Snip-It
Copy a simple text snippet about the active tab to the clipboard
Co to jest Snip-It?
Snip-It to rozszerzenie Chrome opracowane przez crowe.mitch, a jego główną funkcją jest „Copy a simple text snippet about the active tab to the clipboard”.
Pobierz plik CRX rozszerzenia Snip-It
Pobierz pliki rozszerzeń Snip-It w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Save webpages to your clipboard for easy pasting into a markdown document. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fbioimabbleddmecllbenileihlpnamf |
| Oficjalny URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
| Opis | Copy a simple text snippet about the active tab to the clipboard |
| Rozmiar pliku | 33.33 KB |
| Liczba instalacji | 481 |
| Aktualna Wersja | 2.0 |
| Ostatnia Aktualizacja | 2017-01-04 |
| Data Publikacji | 2017-01-04 |
| Deweloper | crowe.mitch |
| Typ Płatności | free |
| Obsługiwane Języki | 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
} | |