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.

Was ist Pinboard.in 'Save a Bookmark' button?

Pinboard.in 'Save a Bookmark' button ist eine Chrome-Erweiterung, die von Boris Terzic entwickelt wurde, und ihr Hauptmerkmal ist "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.".

Erweiterungsscreenshots

screenshot
screenshot

Pinboard.in 'Save a Bookmark' button-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pinboard.in 'Save a Bookmark' button-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pinboard.in 'Save a Bookmark' button Pinboard.in 'Save a Bookmark' button
ID geojpngopndpffccbfgekncdgmgchmgh
Offizielle URL https://chromewebstore.google.com/detail/pinboardin-save-a-bookmar/geojpngopndpffccbfgekncdgmgchmgh
Beschreibung A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.
Dateigröße 6.81 KB
Installationsanzahl 198
Aktuelle Version 1.0.10
Letztes Update 2013-06-28
Veröffentlichungsdatum 2013-06-28
Bewertung 3.38/5 Insgesamt 8 Bewertungen
Entwickler Boris Terzic
Zahlungsart free
Erweiterungswebsite https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark
Unterstützte Sprachen 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"
    }
}