pinboard-fu

Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.

pinboard-fu क्या है?

pinboard-fu banyan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field."।

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

screenshot

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

crx प्रारूप में pinboard-fu एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        ## 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 ;)                    

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

नाम pinboard-fu pinboard-fu
ID ggaonngfgojmeifboajphnhkkhgfefpb
आधिकारिक URL https://chromewebstore.google.com/detail/pinboard-fu/ggaonngfgojmeifboajphnhkkhgfefpb
विवरण Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.
फ़ाइल का आकार 12.81 KB
स्थापना संख्या 74
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2013-06-29
प्रकाशन तिथि 2013-06-29
रेटिंग 3.50/5 कुल 4 रेटिंग्स
डेवलपर banyan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/banyan/pinboard-fu
सहायता पृष्ठ URL https://github.com/banyan/pinboard-fu/issues
समर्थित भाषाएँ 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'"
}