Allow Clipboard
Allows clipboard read and write without user interaction.
Apa itu Allow Clipboard?
Allow Clipboard adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Allows clipboard read and write without user interaction.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Allow Clipboard
Unduh file ekstensi Allow Clipboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
URL Resmi | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
Deskripsi | Allows clipboard read and write without user interaction. |
Ukuran File | 28.08 KB |
Jumlah Instalasi | 3,947 |
Versi Saat Ini | 1.0.3 |
Terakhir Diperbarui | 2017-05-25 |
Tanggal Publikasi | 2017-05-25 |
Penilaian | 2.00/5 Total 8 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/itsmikeeng/AllowClipboard |
Bahasa yang Didukung | 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" } |