Enable Clipboard

Enable clipboard and context menu in disabled websites

Enable Clipboardคืออะไร?

Enable Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย s1n7ax และคุณลักษณะหลักของมันคือ "Enable clipboard and context menu in disabled websites"

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

screenshot

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

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

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

                        Open source extension to enable clipboard and context menu in disabled websites.

Many banking websites disables copy and paste actions. So typing your 25 character long password and bank account numbers is a nightmare. This extension stops the propagation of 'contextmenu', 'copy', 'paste' events so the website cannot prevent the default behavior.

Limitations:
* If the actions are registered in the capturing phase, this plugin may not work (Please create a GitHub issue including the details)

How to use:
* Install the plugin
* Go to the website that you want to enable the clipboard and context menu
* Click on the plugin action icon
* Click on the  "Unlock the Power" button to add the website
* Reload the page
Permissions: 
* Storage - Persistent storage to save the whitelisted URL to enable this plugin on
* Tab - Access the current URL from active tab                    

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

ชื่อ Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
คำอธิบาย Enable clipboard and context menu in disabled websites
ขนาดไฟล์ 14.02 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-12-16
วันที่เผยแพร่ 2021-12-15
ผู้พัฒนา s1n7ax
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/s1n7ax/enable-clipboard
URL หน้าช่วยเหลือ https://github.com/s1n7ax/enable-clipboard/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Clipboard",
    "version": "1.0",
    "description": "Enable clipboard and context menu in disabled websites",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "images\/img_enabled128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/img_disabled128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}