Clipboard Inserter
A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
¿Qué es Clipboard Inserter?
Clipboard Inserter es una extensión de Chrome desarrollada por Unknown, y su función principal es "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Clipboard Inserter
Descarga archivos de extensión Clipboard Inserter 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
This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options. In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
Información Básica de la Extensión
Nombre | Clipboard Inserter |
ID | deahejllghicakhplliloeheabddjajm |
URL Oficial | https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm |
Descripción | A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY |
Tamaño del Archivo | 10.28 KB |
Cantidad de Instalaciones | 10,000 |
Versión Actual | 0.3.2 |
Última Actualización | 2018-12-06 |
Fecha de Publicación | 2018-12-06 |
Calificación | 4.50/5 Total de 12 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/kmltml/clipboard-inserter |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clipboard Inserter", "version": "0.3.2", "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY", "icons": [], "applications": { "gecko": { "id": "@clipboard-inserter" } }, "permissions": [ "activeTab", "clipboardRead", "storage", "file:\/\/*\/*" ], "browser_action": { "browser_style": true, "default_icon": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "64": "icon\/icon64.png" }, "default_title": "Toggle clipboard inserter" }, "background": { "page": "bg\/index.html" }, "options_ui": { "page": "options.html" } } |