Enable right click

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

What is Enable right click?

Enable right click is a Chrome extension developed by https://0-9.tumblr.com, and its main feature is "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Enable right click Extension CRX File

Download Enable right click extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
Official URL 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…
File Size 246 KB
Installation Count 178,435
Current Version 0.0.10
Last Updated 2023-10-24
Publish Date 2017-04-26
Rating 3.57/5 Total 545 Ratings
Developer https://0-9.tumblr.com
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}