Paste Enforcer

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

Cos'è Paste Enforcer?

Paste Enforcer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "It will type the contents of your Clipboard so you can paste text in websites that block it".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Paste Enforcer

Scarica i file di estensione Paste Enforcer 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

                        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!"                    

Informazioni di Base sull'Estensione

Nome Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
URL Ufficiale https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Descrizione It will type the contents of your Clipboard so you can paste text in websites that block it
Dimensione del File 64.39 KB
Conteggio Installazioni 1,677
Versione Corrente 1.1
Ultimo Aggiornamento 2018-12-12
Data di Pubblicazione 2018-12-06
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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
}