pinboard-fu
Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.
Was ist pinboard-fu?
pinboard-fu ist eine Chrome-Erweiterung, die von banyan entwickelt wurde, und ihr Hauptmerkmal ist "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.".
Erweiterungsscreenshots
pinboard-fu-Erweiterungs-CRX-Datei herunterladen
Laden Sie pinboard-fu-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
## 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 ;)
Grundlegende Informationen zur Erweiterung
Name | pinboard-fu |
ID | ggaonngfgojmeifboajphnhkkhgfefpb |
Offizielle URL | https://chromewebstore.google.com/detail/pinboard-fu/ggaonngfgojmeifboajphnhkkhgfefpb |
Beschreibung | Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field. |
Dateigröße | 12.81 KB |
Installationsanzahl | 74 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2013-06-29 |
Veröffentlichungsdatum | 2013-06-29 |
Bewertung | 3.50/5 Insgesamt 4 Bewertungen |
Entwickler | banyan |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/banyan/pinboard-fu |
Hilfeseite URL | https://github.com/banyan/pinboard-fu/issues |
Unterstützte Sprachen | 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'" } |