Allow Clipboard

Allows clipboard read and write without user interaction.

Allow Clipboardคืออะไร?

Allow Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Allows clipboard read and write without user interaction."

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

screenshot
screenshot

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

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

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

                        Chrome Extension that allows clipboard read and write without user interaction. Normally Chrome does not allow JavaScript access to the Clipboard without a user interaction (e.g. click). AllowClipboard extension can be useful in situations where clipboard access is needed out of band, such as during an asynchronous method call from the server.                    

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

ชื่อ Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
คำอธิบาย Allows clipboard read and write without user interaction.
ขนาดไฟล์ 28.08 KB
จำนวนการติดตั้ง 3,947
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2017-05-25
วันที่เผยแพร่ 2017-05-25
คะแนน 2.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/itsmikeeng/AllowClipboard
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Allow Clipboard",
    "version": "1.0.3",
    "description": "Allows clipboard read and write without user interaction.",
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js",
            "common.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "allowClipboardContentScript.js",
                "common.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "allowClipboardClient.js",
        "common.js"
    ],
    "options_page": "options.html"
}