pinboard-fu
Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.
Cos'è pinboard-fu?
pinboard-fu è un'estensione di Chrome sviluppata da banyan, e la sua funzione principale è "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione pinboard-fu
Scarica i file di estensione pinboard-fu 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
## Changelog - 2013/06/29 Migrate to manifest2 version. See: https://github.com/banyan/pinboard-fu#010-29-june-2013 ## Description Default shortcut key is Alt + D. you can change as you like. Codes are open at github: https://github.com/banyan/pinboard-fu If any problem or request, create issue or pull request are welcome ;)
Informazioni di Base sull'Estensione
Nome | pinboard-fu |
ID | ggaonngfgojmeifboajphnhkkhgfefpb |
URL Ufficiale | https://chromewebstore.google.com/detail/pinboard-fu/ggaonngfgojmeifboajphnhkkhgfefpb |
Descrizione | Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field. |
Dimensione del File | 12.81 KB |
Conteggio Installazioni | 74 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2013-06-29 |
Data di Pubblicazione | 2013-06-29 |
Valutazione | 3.50/5 Totale 4 Valutazioni |
Sviluppatore | banyan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/banyan/pinboard-fu |
URL della Pagina di Aiuto | https://github.com/banyan/pinboard-fu/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "pinboard-fu", "description": "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.", "version": "0.1.0", "icons": { "48": "pinboard48.png", "128": "pinboard128.png" }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_title": "Post to Pinboard", "default_icon": "pinboard.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "js\/addPinboard.js", "js\/getSelection.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "options_page": "options_shortcut.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |