Allow Clipboard
Allows clipboard read and write without user interaction.
Vad är Allow Clipboard?
Allow Clipboard är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Allows clipboard read and write without user interaction.".
Tilläggsskärmbilder
Ladda ner Allow Clipboard-förlängningens CRX-fil
Ladda ner Allow Clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
Officiell webbadress | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
Beskrivning | Allows clipboard read and write without user interaction. |
Filstorlek | 28.08 KB |
Antal Installationer | 3,947 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2017-05-25 |
Publiceringsdatum | 2017-05-25 |
Betyg | 2.00/5 Totalt 8 Betyg |
Utvecklare | Unknown |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/itsmikeeng/AllowClipboard |
Stödda Språk | 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" } |