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 là gì?

Enable right click là một tiện ích mở rộng Chrome được phát triển bởi https://0-9.tumblr.com, và tính năng chính của nó là "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Enable right click

Tải xuống các tệp mở rộng Enable right click dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
URL Chính Thức https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Mô tả Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Kích Thước Tệp 246 KB
Số Lần Cài Đặt 178,435
Phiên Bản Hiện Tại 0.0.10
Cập Nhật Lần Cuối 2023-10-24
Ngày Phát Hành 2017-04-26
Đánh Giá 3.57/5 Tổng số 545 Đánh Giá
Nhà Phát Triển https://0-9.tumblr.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}