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. 擴展基本資訊
| 名稱 | |
| ID | ipooeblefgjhpfcmpjgccamencpbjodd |
| 官方網址 | 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"
]
} | |