Allow Clipboard

Allows clipboard read and write without user interaction.

Cos'è Allow Clipboard?

Allow Clipboard è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Allows clipboard read and write without user interaction.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Allow Clipboard

Scarica i file di estensione Allow Clipboard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
URL Ufficiale https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Descrizione Allows clipboard read and write without user interaction.
Dimensione del File 28.08 KB
Conteggio Installazioni 3,947
Versione Corrente 1.0.3
Ultimo Aggiornamento 2017-05-25
Data di Pubblicazione 2017-05-25
Valutazione 2.00/5 Totale 8 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/itsmikeeng/AllowClipboard
Lingue Supportate 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"
}