Allow Clipboard

Allows clipboard read and write without user interaction.

Was ist Allow Clipboard?

Allow Clipboard ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Allows clipboard read and write without user interaction.".

Erweiterungsscreenshots

screenshot
screenshot

Allow Clipboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Allow Clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Allow Clipboard Allow Clipboard
ID bgafccceonganlcmcojjacanoadnhmac
Offizielle URL https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac
Beschreibung Allows clipboard read and write without user interaction.
Dateigröße 28.08 KB
Installationsanzahl 3,947
Aktuelle Version 1.0.3
Letztes Update 2017-05-25
Veröffentlichungsdatum 2017-05-25
Bewertung 2.00/5 Insgesamt 8 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/itsmikeeng/AllowClipboard
Unterstützte Sprachen 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"
}