Allow Right-Click

Re-enable the possibility to use the context menu on sites that overrides it.

Allow Right-Clickคืออะไร?

Allow Right-Click เป็นส่วนขยายของ Chrome ที่พัฒนาโดย itworks และคุณลักษณะหลักของมันคือ "Re-enable the possibility to use the context menu on sites that overrides it."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Allow Right-Click

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

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

                        This extension re-enables the context menu.

Indeed, many sites prohibit the right-click on images, pretending to protect their content. I think it is illegitimate. 

Unfortunately, Google Chrome does not have advanced options for what javascript is allowed to do (on the contrary of Konqueror, Opera or firefox). If you think it should, please star (don't add a "me too" comment) 

In the meantime, this extension provides a workaround, by resetting the oncontextmenu to its default behaviour on many elements of the page. Oh, as a bonus, it works for Flickr and Youtube html5 videos too!

If a site is not supported, please report it in the bug tracker, not in the comments.
If a site is broken by the extension, please report it in the bug tracker, not in the comments.

However, a nice comment is always welcome :-)                    

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

ชื่อ Allow Right-Click Allow Right-Click
ID hompjdfbfmmmgflfjdlnkohcplmboaeo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/allow-right-click/hompjdfbfmmmgflfjdlnkohcplmboaeo
คำอธิบาย Re-enable the possibility to use the context menu on sites that overrides it.
ขนาดไฟล์ 22.52 KB
จำนวนการติดตั้ง 473,286
เวอร์ชันปัจจุบัน 1.5.2.4
อัปเดตครั้งล่าสุด 2018-06-07
วันที่เผยแพร่ 2018-06-07
คะแนน 4.64/5 รวมทั้งหมด 5305 คะแนน
ผู้พัฒนา itworks
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_chrome_extension_name__",
    "description": "__MSG_chrome_extension_description__",
    "version": "1.5.2.4",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "css": [
                "css\/flickr.css"
            ],
            "matches": [
                "http:\/\/www.flickr.com\/*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "js\/rightclick.js",
                "js\/new_rightclick.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}