Pinboard Search
Search Pinboard in Omnibox
什么是Pinboard Search?
Pinboard Search是由https://mono0x.net开发的Chrome扩展程序,该扩展的主要功能是“Search Pinboard in Omnibox”。
扩展截图
下载Pinboard Search扩展crx文件
下载Pinboard Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pinboard Search provides incremental search for Pinboard. In the Omnibox, type 'p', hit space and then you can search your bookmarks. https://github.com/mono0x/pinboard-search version 0.4.0 - Add support for search expressions. 'a OR b', 'title:word', 'tag:word', 'comment:word', and '-word' are now supported. version 0.3.0 - Use Migemo Server (https://chrome.google.com/webstore/detail/migemo-server-for-google/dfccgbheolnlopfmahkcjiefggclmadb) instead of ChromeMigemo. version 0.2.0 - Add support for ChromeMigemo (https://chrome.google.com/webstore/detail/chromemigemo/pocnedlaincikkkcmlpcbipcflgjnjlj). version 0.1.0 - Add support for API token.
扩展基本信息
名称 | Pinboard Search |
ID | ipooeblefgjhpfcmpjgccamencpbjodd |
官方URL | https://chromewebstore.google.com/detail/pinboard-search/ipooeblefgjhpfcmpjgccamencpbjodd |
简介 | Search Pinboard in Omnibox |
文件大小 | 64.59 KB |
安装次数 | 208 |
当前版本 | 0.4.0 |
更新时间 | 2015-12-31 |
上架时间 | 2015-12-30 |
评分 | 4.32/5 共25次评分 |
开发者 | https://mono0x.net |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinboard Search", "version": "0.4.0", "description": "Search Pinboard in Omnibox", "background": { "scripts": [ "lib\/jquery.min.js", "lib\/utils.js", "lib\/pinboard.js", "lib\/migemo.js", "lib\/search.js", "lib\/parser.js", "lib\/omnibox.js" ] }, "sandbox": { "pages": [ "sandbox.html" ], "content_security_policy": "sandbox allow-scripts; script-src 'unsafe-eval'" }, "options_page": "options.html", "omnibox": { "keyword": "p" }, "permissions": [ "storage", "alarms", "unlimitedStorage", "https:\/\/api.pinboard.in\/v1\/posts\/update", "https:\/\/api.pinboard.in\/v1\/posts\/all" ] } |