Enable right click

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

什么是Enable right click?

Enable right click是由https://0-9.tumblr.com开发的Chrome扩展程序,该扩展的主要功能是“Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Enable right click扩展crx文件

下载Enable right click扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
官方URL https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
简介 Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
文件大小 246 KB
安装次数 178,435
当前版本 0.0.10
更新时间 2023-10-24
上架时间 2017-04-26
评分 3.57/5 共545次评分
开发者 https://0-9.tumblr.com
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}