Allow Copy/Paste

An extension to permit copy and paste on sites that block this feature.

Allow Copy/Pasteคืออะไร?

Allow Copy/Paste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fraser Benjamin และคุณลักษณะหลักของมันคือ "An extension to permit copy and paste on sites that block this feature."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Allow Copy/Paste

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

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

                        Some websites block your ability to copy and paste text and content from them, this extension works to prevent these restrictions from being added.

There are two features to attempt to remove the restrictions available with this extension. You can navigate to the page you'd like to copy/paste from and click the extension icon in Chrome and then "Allow Copy/Paste". Generally this should work for most sites and allow you to carry on like normal. The extension will also store your preferences so you'll only need to do this once for each site.

However, if that doesn't work you can also open Chrome Developer Tools and select the "Allow Copy/Paste" tab which will then give you a button to reload the page and attempt to prevent the blocking script from being added. https://developer.chrome.com/docs/devtools/open                    

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

ชื่อ Allow Copy/Paste Allow Copy/Paste
ID ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/allow-copypaste/ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
คำอธิบาย An extension to permit copy and paste on sites that block this feature.
ขนาดไฟล์ 29.9 KB
จำนวนการติดตั้ง 3,367
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-03-25
วันที่เผยแพร่ 2022-03-21
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Fraser Benjamin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Allow Copy\/Paste",
    "description": "An extension to permit copy and paste on sites that block this feature.",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icons\/allow-copy-paste-logo-16.png",
        "48": "icons\/allow-copy-paste-logo-48.png",
        "128": "icons\/allow-copy-paste-logo-128.png",
        "256": "icons\/allow-copy-paste-logo-256.png",
        "512": "icons\/allow-copy-paste-logo-512.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/allow-copy-paste-logo-16.png",
            "48": "icons\/allow-copy-paste-logo-48.png",
            "128": "icons\/allow-copy-paste-logo-128.png",
            "256": "icons\/allow-copy-paste-logo-256.png",
            "512": "icons\/allow-copy-paste-logo-512.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ]
}