Snip-It
Copy a simple text snippet about the active tab to the clipboard
Hvad er Snip-It?
Snip-It er en Chrome-udvidelse udviklet af crowe.mitch, og dens hovedfunktion er "Copy a simple text snippet about the active tab to the clipboard".
Download Snip-It-udvidelses-CRX-fil
Download Snip-It-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Save webpages to your clipboard for easy pasting into a markdown document. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fbioimabbleddmecllbenileihlpnamf |
| Officiel URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
| Beskrivelse | Copy a simple text snippet about the active tab to the clipboard |
| Filstørrelse | 33.33 KB |
| Antal Installationer | 481 |
| Nuværende Version | 2.0 |
| Senest Opdateret | 2017-01-04 |
| Udgivelsesdato | 2017-01-04 |
| Udvikler | crowe.mitch |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |