Allow Clipboard
Allows clipboard read and write without user interaction.
Hvad er Allow Clipboard?
Allow Clipboard er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Allows clipboard read and write without user interaction.".
Udvidelsesskærmbilleder
Download Allow Clipboard-udvidelses-CRX-fil
Download Allow Clipboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
Officiel URL | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
Beskrivelse | Allows clipboard read and write without user interaction. |
Filstørrelse | 28.08 KB |
Antal Installationer | 3,947 |
Nuværende Version | 1.0.3 |
Senest Opdateret | 2017-05-25 |
Udgivelsesdato | 2017-05-25 |
Bedømmelse | 2.00/5 Samlet 8 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/itsmikeeng/AllowClipboard |
Understøttede Sprog | 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" } |