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
官方網址 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"
    ]
}