Pinboard.in 'Save a Bookmark' button
A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.
Qu'est-ce que Pinboard.in 'Save a Bookmark' button ?
Pinboard.in 'Save a Bookmark' button est une extension Chrome développée par Boris Terzic, et sa fonction principale est "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pinboard.in 'Save a Bookmark' button
Téléchargez les fichiers d'extension Pinboard.in 'Save a Bookmark' button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A very simple single purpose Pinboard ( http://pinboard.in ) extension: it adds an action button next to your address bar and when you click it the normal Pinboard "Save a Bookmark" page (as used in the bookmarklet) will appear in a popup with the current webpage URL and title pre-filled, as well as any text you may have selected for the description field. You can modify any fields, add tags and when saving the bookmark the popup will disappear automatically. I wrote this small plugin since every other Pinboard extension at the time was trying to do more than just allow creating a new bookmark and I wanted to have as little clicks as possible. Requires access to all pages in order to support the "use current selection as description" feature. Full source code of this extension is available on my Github repository: https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark Changelog: 1.0.6 - Small typo caused a bug that prevented the popup from showing, should be fixed.
Informations de Base sur l'Extension
Nom | Pinboard.in 'Save a Bookmark' button |
ID | geojpngopndpffccbfgekncdgmgchmgh |
URL Officiel | https://chromewebstore.google.com/detail/pinboardin-save-a-bookmar/geojpngopndpffccbfgekncdgmgchmgh |
Description | A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection. |
Taille du Fichier | 6.81 KB |
Nombre d'Installations | 198 |
Version Actuelle | 1.0.10 |
Dernière Mise à Jour | 2013-06-28 |
Date de Publication | 2013-06-28 |
Évaluation | 3.38/5 Total 8 Évaluations |
Développeur | Boris Terzic |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinboard.in 'Save a Bookmark' button", "version": "1.0.10", "description": "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.", "background": { "page": "background.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "icons": { "16": "bluepin16x16.png", "48": "bluepin48x48.png", "128": "bluepin128x128.png" }, "browser_action": { "default_icon": "bluepin16x16.png" } } |