Allow Clipboard
Allows clipboard read and write without user interaction.
¿Qué es Allow Clipboard?
Allow Clipboard es una extensión de Chrome desarrollada por Unknown, y su función principal es "Allows clipboard read and write without user interaction.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Allow Clipboard
Descarga archivos de extensión Allow Clipboard 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
Chrome Extension that allows clipboard read and write without user interaction. Normally Chrome does not allow JavaScript access to the Clipboard without a user interaction (e.g. click). AllowClipboard extension can be useful in situations where clipboard access is needed out of band, such as during an asynchronous method call from the server.
Información Básica de la Extensión
Nombre | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
URL Oficial | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
Descripción | Allows clipboard read and write without user interaction. |
Tamaño del Archivo | 28.08 KB |
Cantidad de Instalaciones | 3,947 |
Versión Actual | 1.0.3 |
Última Actualización | 2017-05-25 |
Fecha de Publicación | 2017-05-25 |
Calificación | 2.00/5 Total de 8 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/itsmikeeng/AllowClipboard |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Allow Clipboard", "version": "1.0.3", "description": "Allows clipboard read and write without user interaction.", "icons": { "128": "icon_128.png" }, "background": { "persistent": false, "scripts": [ "background.js", "common.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "allowClipboardContentScript.js", "common.js" ] } ], "web_accessible_resources": [ "allowClipboardClient.js", "common.js" ], "options_page": "options.html" } |