Paste Enforcer

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

Wat is Paste Enforcer?

Paste Enforcer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "It will type the contents of your Clipboard so you can paste text in websites that block it".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Paste Enforcer

Download Paste Enforcer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
Officiële URL https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Beschrijving It will type the contents of your Clipboard so you can paste text in websites that block it
Bestandsgrootte 64.39 KB
Aantal Installaties 1,677
Huidige Versie 1.1
Laatst Bijgewerkt 2018-12-12
Publicatiedatum 2018-12-06
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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
}