Allow Clipboard

Allows clipboard read and write without user interaction.

What is Allow Clipboard?

Allow Clipboard is a Chrome extension developed by Unknown, and its main feature is "Allows clipboard read and write without user interaction.".

Extension Screenshots

screenshot
screenshot

Download Allow Clipboard Extension CRX File

Download Allow Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
Official URL https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Description Allows clipboard read and write without user interaction.
File Size 28.08 KB
Installation Count 3,947
Current Version 1.0.3
Last Updated 2017-05-25
Publish Date 2017-05-25
Rating 2.00/5 Total 8 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/itsmikeeng/AllowClipboard
Supported Languages 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"
}