Snip-It

Copy a simple text snippet about the active tab to the clipboard

Snip-It क्या है?

Snip-It crowe.mitch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy a simple text snippet about the active tab to the clipboard"।

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

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

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

                        Save webpages to your clipboard for easy pasting into a markdown document.                    

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

नाम Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
आधिकारिक URL https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
विवरण Copy a simple text snippet about the active tab to the clipboard
फ़ाइल का आकार 33.33 KB
स्थापना संख्या 481
वर्तमान संस्करण 2.0
अंतिम अपडेट 2017-01-04
प्रकाशन तिथि 2017-01-04
डेवलपर crowe.mitch
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snip-It",
    "description": "Copy a simple text snippet about the active tab to the clipboard",
    "version": "2.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "tab-snippet": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Copy a snippet of the current tab"
        }
    },
    "browser_action": {
        "default_title": "Copy a snippet to the clipboard",
        "default_icon": "icon.png"
    },
    "manifest_version": 2
}