Enable right click

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

Cos'è Enable right click?

Enable right click è un'estensione di Chrome sviluppata da https://0-9.tumblr.com, e la sua funzione principale è "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Enable right click

Scarica i file di estensione Enable right click in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
URL Ufficiale https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Descrizione Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Dimensione del File 246 KB
Conteggio Installazioni 178,435
Versione Corrente 0.0.10
Ultimo Aggiornamento 2023-10-24
Data di Pubblicazione 2017-04-26
Valutazione 3.57/5 Totale 545 Valutazioni
Sviluppatore https://0-9.tumblr.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}