Allow Right-Click

Re-enable the possibility to use the context menu, copy, paste, and text selection on sites that prevent them.

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

Allow Right-Click เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lunu.bounir และคุณลักษณะหลักของมันคือ "Re-enable the possibility to use the context menu, copy, paste, and text selection on sites that prevent them."

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

screenshot

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

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

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

                        This extension is a clean implementation to re-enable right-click context menu on websites that prevent it. Some websites prevent right-click to prohibit the user from copying or pasting content. This is a misuse of a browser feature that is designed to allow website owners to provide their own context menu not to block the user from accessing the browser's default context. 

How to use the extension?
Simply click on the toolbar button if the right-click is blocked on a website. That's it! Note that this extension uses a non-persistent background script which means it is not using any resource unless the toolbar button is pressed. So compared to the other alternatives it can be considered more efficient implementation.

Some extra use cases:
1. Copy image from image hosting websites such as Instragram (www.instagram.com) or 500px (500px.com).
2. Copy video from video or clip hosting websites such as Instragram or Tik Tak (www.tiktok.com).

Features:
1. Reenables defualt context menu based on the context (for image, you will get image context menu, and for video, you will get the default video context menu with "Save As" context menu item)
2. Reenables copy and paste on websites that prevert them (unblocks clipboard)
3. One-click toggle on and off
4. Automatically gets enabled on the user requested websites
5. Disables web distraction by muting "window.alert" and other intruptting notifications
6. Unblocks text selection ("user-select", "-moz-user-select",  and "-webkit-user-select")
7. Unblocks pointer event blocking ("pointer-events")
8. Unblocks image access within HTML5's custom elements
9. Open-source on GitHub
10. Unblocks touch events on Android (touchstart and touchend)                    

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

ชื่อ Allow Right-Click Allow Right-Click
ID hnafhkjheookmokbkpnfpmemlppjdgoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/allow-right-click/hnafhkjheookmokbkpnfpmemlppjdgoi
คำอธิบาย Re-enable the possibility to use the context menu, copy, paste, and text selection on sites that prevent them.
ขนาดไฟล์ 100 KB
จำนวนการติดตั้ง 158,019
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2024-02-12
วันที่เผยแพร่ 2019-07-28
คะแนน 4.59/5 รวมทั้งหมด 119 คะแนน
ผู้พัฒนา lunu.bounir
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/allow-right-click.html
URL หน้าช่วยเหลือ https://webextension.org/listing/allow-right-click.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/lunu.bounir.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.6.0",
    "default_locale": "en",
    "name": "Allow Right-Click",
    "description": "__MSG_description__",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "notifications"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": [],
    "homepage_url": "https:\/\/webextension.org\/listing\/allow-right-click.html",
    "background": {
        "service_worker": "worker.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "\/data\/options\/index.html"
    },
    "commands": {
        "_execute_action": []
    }
}