Snip-It
Copy a simple text snippet about the active tab to the clipboard
Was ist Snip-It?
Snip-It ist eine Chrome-Erweiterung, die von crowe.mitch entwickelt wurde, und ihr Hauptmerkmal ist "Copy a simple text snippet about the active tab to the clipboard".
Snip-It-Erweiterungs-CRX-Datei herunterladen
Laden Sie Snip-It-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Save webpages to your clipboard for easy pasting into a markdown document. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fbioimabbleddmecllbenileihlpnamf |
| Offizielle URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
| Beschreibung | Copy a simple text snippet about the active tab to the clipboard |
| Dateigröße | 33.33 KB |
| Installationsanzahl | 481 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2017-01-04 |
| Veröffentlichungsdatum | 2017-01-04 |
| Entwickler | crowe.mitch |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |