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.
扩展基本信息
名称 | 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" } |