Allow Clipboard

Allows clipboard read and write without user interaction.

Wat is Allow Clipboard?

Allow Clipboard is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Allows clipboard read and write without user interaction.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Allow Clipboard

Download Allow Clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
Officiële URL https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Beschrijving Allows clipboard read and write without user interaction.
Bestandsgrootte 28.08 KB
Aantal Installaties 3,947
Huidige Versie 1.0.3
Laatst Bijgewerkt 2017-05-25
Publicatiedatum 2017-05-25
Beoordeling 2.00/5 Totaal 8 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/itsmikeeng/AllowClipboard
Ondersteunde Talen 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"
}