Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
¿Qué es Paste Enforcer?
Paste Enforcer es una extensión de Chrome desarrollada por Unknown, y su función principal es "It will type the contents of your Clipboard so you can paste text in websites that block it".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Paste Enforcer
Descarga archivos de extensión Paste Enforcer 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
It will type the contents of your Clipboard so you can paste text in websites that block it. Just right click the field and select: "Force paste!"
Información Básica de la Extensión
Nombre | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
URL Oficial | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
Descripción | It will type the contents of your Clipboard so you can paste text in websites that block it |
Tamaño del Archivo | 64.39 KB |
Cantidad de Instalaciones | 1,677 |
Versión Actual | 1.1 |
Última Actualización | 2018-12-12 |
Fecha de Publicación | 2018-12-06 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste Enforcer", "version": "1.1", "description": "It will type the contents of your Clipboard so you can paste text in websites that block it", "permissions": [ "contextMenus", "activeTab", "clipboardRead" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery.js", "vendor\/bililiteRange.js", "vendor\/jquery.sendkeys.js", "content-script.js" ], "all_frames": true } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |