Pinboard Search
Search Pinboard in Omnibox
Cos'è Pinboard Search?
Pinboard Search è un'estensione di Chrome sviluppata da https://mono0x.net, e la sua funzione principale è "Search Pinboard in Omnibox".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pinboard Search
Scarica i file di estensione Pinboard Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Pinboard Search |
ID | ipooeblefgjhpfcmpjgccamencpbjodd |
URL Ufficiale | https://chromewebstore.google.com/detail/pinboard-search/ipooeblefgjhpfcmpjgccamencpbjodd |
Descrizione | Search Pinboard in Omnibox |
Dimensione del File | 64.59 KB |
Conteggio Installazioni | 208 |
Versione Corrente | 0.4.0 |
Ultimo Aggiornamento | 2015-12-31 |
Data di Pubblicazione | 2015-12-30 |
Valutazione | 4.32/5 Totale 25 Valutazioni |
Sviluppatore | https://mono0x.net |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |