Pumpkin's Right Click Enable

It allows you to right-click and drag the mouse, and makes it easy to turn the javascript off and on.

Pumpkin's Right Click Enableคืออะไร?

Pumpkin's Right Click Enable เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matthew-s-bowens และคุณลักษณะหลักของมันคือ "It allows you to right-click and drag the mouse, and makes it easy to turn the javascript off and on."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pumpkin's Right Click Enable

ดาวน์โหลดไฟล์ส่วนขยาย Pumpkin's Right Click Enable ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You can disable "BLOCK THE RIGHT-CLICK" sites.

Pumpkin's Enable is easily allow Right click and Dragging.

You can also quick enable / disable JavaScript on the fly by hostname, and subdomain.

Thank you.


__________________________________
This extension's ver 1.0.7 (2024.02.19)
- Migrate to Manifest V3

This extension's ver 1.0.6 (2020.03.21)
- Fixing a problem where scripts don't work at several sites & add locale

This extension's ver 1.0.5.7 (2019.06.24)
- Fixed Naver Map, Kakao Map issues

This extension's ver 1.0.5 (2019.06.16)
- Fixed right click enable issues in chrome 75 version

This extension's ver 1.0.4.4 (2018.08.15)
- Added shortcut(Hot key) of 'Super Enable'. ( alt + `[~] )

This extension's ver 1.0.4.2 (2018.07.15)
- Kill javascripts bug fixed.

This extension's ver 1.0.4 
- It remembers the setting value about the super-enable used.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pumpkin's Right Click Enable Pumpkin's Right Click Enable
ID linjodakmnamlieknafoiphnckgbaeab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pumpkins-right-click-enab/linjodakmnamlieknafoiphnckgbaeab
คำอธิบาย It allows you to right-click and drag the mouse, and makes it easy to turn the javascript off and on.
ขนาดไฟล์ 117 KB
จำนวนการติดตั้ง 38,663
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2024-02-20
วันที่เผยแพร่ 2020-03-21
คะแนน 4.57/5 รวมทั้งหมด 67 คะแนน
ผู้พัฒนา matthew-s-bowens
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/pumpkinsrightclickenable/home
ภาษาที่รองรับ en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "1.0.7",
    "icons": {
        "16": "icon\/p_icon_16.png",
        "48": "icon\/p_icon_48.png",
        "128": "icon\/p_icon_128.png"
    },
    "permissions": [
        "tabs",
        "contentSettings",
        "storage",
        "contextMenus",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "default_locale": "en",
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "pumpkin's right click enable",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content-scripts\/bu.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content-scripts\/start.js"
            ]
        }
    ]
}