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…
Was ist Force Enable Text Selection?
Force Enable Text Selection ist eine Chrome-Erweiterung, die von J-26 entwickelt wurde, und ihr Hauptmerkmal ist "This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…".
Erweiterungsscreenshots
Force Enable Text Selection-Erweiterungs-CRX-Datei herunterladen
Laden Sie Force Enable Text Selection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Force Enable Text Selection |
ID | ehahhhffddaohggfoijpnnagkkeagmmb |
Offizielle URL | https://chromewebstore.google.com/detail/force-enable-text-selecti/ehahhhffddaohggfoijpnnagkkeagmmb |
Beschreibung | This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this… |
Dateigröße | 22.35 KB |
Installationsanzahl | 9,401 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2019-02-24 |
Veröffentlichungsdatum | 2019-02-20 |
Bewertung | 3.10/5 Insgesamt 29 Bewertungen |
Entwickler | J-26 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |