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…

Wat is Force Enable Text Selection?

Force Enable Text Selection is een Chrome-extensie ontwikkeld door J-26, en de belangrijkste functie is "This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Force Enable Text Selection

Download Force Enable Text Selection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Force Enable Text Selection Force Enable Text Selection
ID ehahhhffddaohggfoijpnnagkkeagmmb
Officiële URL https://chromewebstore.google.com/detail/force-enable-text-selecti/ehahhhffddaohggfoijpnnagkkeagmmb
Beschrijving This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…
Bestandsgrootte 22.35 KB
Aantal Installaties 9,401
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-02-24
Publicatiedatum 2019-02-20
Beoordeling 3.10/5 Totaal 29 Beoordelingen
Ontwikkelaar J-26
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}