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…

O que é Force Enable Text Selection?

Force Enable Text Selection é uma extensão do Chrome desenvolvida por J-26, e sua principal característica é "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 Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Force Enable Text Selection

Baixe arquivos de extensão Force Enable Text Selection no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Force Enable Text Selection Force Enable Text Selection
ID ehahhhffddaohggfoijpnnagkkeagmmb
URL Oficial https://chromewebstore.google.com/detail/force-enable-text-selecti/ehahhhffddaohggfoijpnnagkkeagmmb
Descrição This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…
Tamanho do Arquivo 22.35 KB
Contagem de Instalações 9,401
Versão Atual 1.0.0
Última Atualização 2019-02-24
Data de Publicação 2019-02-20
Classificação 3.10/5 Total de 29 Avaliações
Desenvolvedor J-26
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}