Enable right click

Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…

O que é Enable right click?

Enable right click é uma extensão do Chrome desenvolvida por https://0-9.tumblr.com, e sua principal característica é "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Enable right click

Baixe arquivos de extensão Enable right click 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 right-click on pages where right-click is disabled.

Simply install this extension to make menus appear on pages where right-click is not available.

Source code is here.
https://github.com/kyo-ago/enable-right-click                    

Informações Básicas da Extensão

Nome Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
URL Oficial https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Descrição Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Tamanho do Arquivo 246 KB
Contagem de Instalações 178,435
Versão Atual 0.0.10
Última Atualização 2023-10-24
Data de Publicação 2017-04-26
Classificação 3.57/5 Total de 545 Avaliações
Desenvolvedor https://0-9.tumblr.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable right click",
    "version": "0.0.10",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_title": "Disable right click",
        "default_icon": "img\/icon128.png"
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "src\/DisableSettings.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/web_accessible_resources\/index.js"
    ]
}