Paste Enforcer

It will type the contents of your Clipboard so you can paste text in websites that block it

Was ist Paste Enforcer?

Paste Enforcer ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "It will type the contents of your Clipboard so you can paste text in websites that block it".

Erweiterungsscreenshots

screenshot

Paste Enforcer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Paste Enforcer-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

                        It will type the contents of your Clipboard so you can paste text in websites that block it.

Just right click the field and select: "Force paste!"                    

Grundlegende Informationen zur Erweiterung

Name Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
Offizielle URL https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Beschreibung It will type the contents of your Clipboard so you can paste text in websites that block it
Dateigröße 64.39 KB
Installationsanzahl 1,677
Aktuelle Version 1.1
Letztes Update 2018-12-12
Veröffentlichungsdatum 2018-12-06
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste Enforcer",
    "version": "1.1",
    "description": "It will type the contents of your Clipboard so you can paste text in websites that block it",
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/bililiteRange.js",
                "vendor\/jquery.sendkeys.js",
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}