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.

Pinboard.in 'Save a Bookmark' button क्या है?

Pinboard.in 'Save a Bookmark' button Boris Terzic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pinboard.in 'Save a Bookmark' button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Pinboard.in 'Save a Bookmark' button Pinboard.in 'Save a Bookmark' button
ID geojpngopndpffccbfgekncdgmgchmgh
आधिकारिक URL https://chromewebstore.google.com/detail/pinboardin-save-a-bookmar/geojpngopndpffccbfgekncdgmgchmgh
विवरण A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.
फ़ाइल का आकार 6.81 KB
स्थापना संख्या 198
वर्तमान संस्करण 1.0.10
अंतिम अपडेट 2013-06-28
प्रकाशन तिथि 2013-06-28
रेटिंग 3.38/5 कुल 8 रेटिंग्स
डेवलपर Boris Terzic
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark
समर्थित भाषाएँ 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"
    }
}