Force Enable Text Selection
This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…
¿Qué es Force Enable Text Selection?
Force Enable Text Selection es una extensión de Chrome desarrollada por J-26, y su función principal es "This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Force Enable Text Selection
Descarga archivos de extensión Force Enable Text Selection 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 extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this extension because Chegg Homework disables the text-selection ability for no reason that I can understand. This extension will allow you to select the text in the Homework Help section of their website and anywhere else that this feature has been disabled. This extension does not enable text selection for websites that have disabled text selection via javascript. I am, however, happy to look into adding this ability if there is a need for it. <3
Información Básica de la Extensión
Nombre | Force Enable Text Selection |
ID | ehahhhffddaohggfoijpnnagkkeagmmb |
URL Oficial | https://chromewebstore.google.com/detail/force-enable-text-selecti/ehahhhffddaohggfoijpnnagkkeagmmb |
Descripción | This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this… |
Tamaño del Archivo | 22.35 KB |
Cantidad de Instalaciones | 9,401 |
Versión Actual | 1.0.0 |
Última Actualización | 2019-02-24 |
Fecha de Publicación | 2019-02-20 |
Calificación | 3.10/5 Total de 29 Calificaciones |
Desarrollador | J-26 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Force Enable Text Selection", "short_name": "Force Enable Text Selection", "version": "1.0.0", "description": "", "author": "J-26", "browser_action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "72": "icons\/icon-72.png", "96": "icons\/icon-96.png" }, "default_popup": "popup.html" }, "permissions": [ "storage" ], "icons": { "128": "icons\/icon-128.png", "256": "icons\/icon-256.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "css\/styles.css" ], "js": [ "js\/options.js" ] } ] } |