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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://0-9.tumblr.com และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enable right click

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}