Snip-It
Copy a simple text snippet about the active tab to the clipboard
¿Qué es Snip-It?
Snip-It es una extensión de Chrome desarrollada por crowe.mitch, y su función principal es "Copy a simple text snippet about the active tab to the clipboard".
Descargar Archivo CRX de la Extensión Snip-It
Descarga archivos de extensión Snip-It en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Save webpages to your clipboard for easy pasting into a markdown document. Información Básica de la Extensión
| Nombre | |
| ID | fbioimabbleddmecllbenileihlpnamf |
| URL Oficial | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
| Descripción | Copy a simple text snippet about the active tab to the clipboard |
| Tamaño del Archivo | 33.33 KB |
| Cantidad de Instalaciones | 481 |
| Versión Actual | 2.0 |
| Última Actualización | 2017-01-04 |
| Fecha de Publicación | 2017-01-04 |
| Desarrollador | crowe.mitch |
| Tipo de Pago | free |
| Idiomas Soportados | 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
} | |