Alfred - Script Filter
栏目: JavaScript · 发布时间: 5年前
内容简介:Alfred 3 推荐 JSON 作为 Script Filter 返回的格式。这样以来,用 Alfred 写 Workflow 就更加方便,更加通用。所以翻译了一下官方文档…环境信息Alfred 3.8.1
Alfred 3 推荐 JSON 作为 Script Filter 返回的格式。这样以来,用 Alfred 写 Workflow 就更加方便,更加通用。所以翻译了一下官方文档…
环境信息
Alfred 3.8.1
第一步…最后一步
差不多只需要一步,就能知道 Script Filter 是什么。Alfred -> Workflows -> + -> Getting Started -> Script Filter。创建以后,能看到 jsonformat 和 xmlformat 模板。在 Alfred 中,输入 jsonformat
,能看到效果:
双击 jsonformat ,能看到这个 Script Filter 返回了一个 items
数组。数组有四个元素,就对应着 Alfred 显示的四个 item。所以规则也就显而易见了。
规则
Script Filter 要求返回 items
数组,每个 item
就是 Alfred 显示的行。
{"items": [ { "uid": "desktop", "type": "file", "title": "Desktop", "subtitle": "~/Desktop", "arg": "~/Desktop", "autocomplete": "Desktop", "icon": { "type": "fileicon", "path": "~/Desktop" } } ]}
属性
上面看到的实例只是其中一部分属性,接下来一一说明下。
uid : String(可选)
每个 item 的唯一标识,后续 Alfred 能依托这个 uid,根据用户操作进行排序。如果想保持自己脚本返回的顺序,不用 Alfred 的排序,可以不设置这个字段。
"uid" : "xxx-xxx-xxx"
title
顾名思义,Row 的标题。
"title" : "Desktop"
subtitle(可选)
副标题
"subtitle" : "~/Desktop"
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
What Technology Wants
Kevin Kelly / Penguin Group (USA) Incorporated / 2010-10-14 / USD 27.95
A refreshing view of technology as a living force in the world. This provocative book introduces a brand-new view of technology. It suggests that technology as a whole is not a jumble of wires and ......一起来看看 《What Technology Wants》 这本书的介绍吧!