Snip-It

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

Qu'est-ce que Snip-It ?

Snip-It est une extension Chrome développée par crowe.mitch, et sa fonction principale est "Copy a simple text snippet about the active tab to the clipboard".

Télécharger le fichier CRX de l'extension Snip-It

Téléchargez les fichiers d'extension Snip-It au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
URL Officiel https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
Description Copy a simple text snippet about the active tab to the clipboard
Taille du Fichier 33.33 KB
Nombre d'Installations 481
Version Actuelle 2.0
Dernière Mise à Jour 2017-01-04
Date de Publication 2017-01-04
Développeur crowe.mitch
Type de Paiement free
Langues Prises en Charge 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
}