enable-selection

Enable Selection in some websites which block selection by mouse to open context menu and copy. This small (only ~20 lines of…

O que é enable-selection?

enable-selection é uma extensão do Chrome desenvolvida por limkokhole, e sua principal característica é "Enable Selection in some websites which block selection by mouse to open context menu and copy. This small (only ~20 lines of…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão enable-selection

Baixe arquivos de extensão enable-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

                        Enable Selection in some websites which block selection by mouse to open context menu and copy.

This small (only ~20 lines of code) extension performs basic anti-anti-selection when website blocking selection to copy and open context menu.

Example of working websites are:
[1] https://cn.cari.com.my
[2] http://chinapress.com.my
[3] http://sinchew.com.my
[4] http://guangming.com.my
[5] http://www.enanyang.my
[6] http://dynamicdrive.com/dynamicindex9/noright.htm
[7] https://www.zhihu.com
[8] https://www.qidian.com

Tip: This extension might no effect If the web page still loading, in that, case, either wait for the page loaded OR press "Esc" key to stop loading immediately.                    

Informações Básicas da Extensão

Nome enable-selection enable-selection
ID jehoagbopeaefibnihnfgenfcilmcikj
URL Oficial https://chromewebstore.google.com/detail/enable-selection/jehoagbopeaefibnihnfgenfcilmcikj
Descrição Enable Selection in some websites which block selection by mouse to open context menu and copy. This small (only ~20 lines of…
Tamanho do Arquivo 11.86 KB
Contagem de Instalações 3,500
Versão Atual 1.1
Última Atualização 2019-01-11
Data de Publicação 2019-01-07
Classificação 4.00/5 Total de 19 Avaliações
Desenvolvedor limkokhole
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": "enable-selection",
    "short_name": "select",
    "version": "1.1",
    "icons": {
        "128": "icons\/select_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selection.js"
            ],
            "css": [
                "selection.css"
            ]
        }
    ]
}