Allow Clipboard

Allows clipboard read and write without user interaction.

Qu'est-ce que Allow Clipboard ?

Allow Clipboard est une extension Chrome développée par Unknown, et sa fonction principale est "Allows clipboard read and write without user interaction.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Allow Clipboard

Téléchargez les fichiers d'extension Allow Clipboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
URL Officiel https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Description Allows clipboard read and write without user interaction.
Taille du Fichier 28.08 KB
Nombre d'Installations 3,947
Version Actuelle 1.0.3
Dernière Mise à Jour 2017-05-25
Date de Publication 2017-05-25
Évaluation 2.00/5 Total 8 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/itsmikeeng/AllowClipboard
Langues Prises en Charge 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"
}