Allow Clipboard
Allows clipboard read and write without user interaction.
什麼是Allow Clipboard?
Allow Clipboard是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Allows clipboard read and write without user interaction.”。
擴展截圖
下載Allow Clipboard擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | bgafccceonganlcmcojjacanoadnhmac |
| 官方網址 | 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"
} | |