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" } |