Snip-It

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

Vad är Snip-It?

Snip-It är en Chrome-tillägg utvecklad av crowe.mitch, och dess huvudfunktion är "Copy a simple text snippet about the active tab to the clipboard".

Ladda ner Snip-It-förlängningens CRX-fil

Ladda ner Snip-It-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
Officiell webbadress https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
Beskrivning Copy a simple text snippet about the active tab to the clipboard
Filstorlek 33.33 KB
Antal Installationer 481
Aktuell Version 2.0
Senast Uppdaterad 2017-01-04
Publiceringsdatum 2017-01-04
Utvecklare crowe.mitch
Betalningssätt free
Stödda Språk 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
}