Enable right click

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

Qu'est-ce que Enable right click ?

Enable right click est une extension Chrome développée par https://0-9.tumblr.com, et sa fonction principale est "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Enable right click

Téléchargez les fichiers d'extension Enable right click au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
URL Officiel https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Description Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Taille du Fichier 246 KB
Nombre d'Installations 178,435
Version Actuelle 0.0.10
Dernière Mise à Jour 2023-10-24
Date de Publication 2017-04-26
Évaluation 3.57/5 Total 545 Évaluations
Développeur https://0-9.tumblr.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}