Paste Enforcer

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

Co to jest Paste Enforcer?

Paste Enforcer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „It will type the contents of your Clipboard so you can paste text in websites that block it”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Paste Enforcer

Pobierz pliki rozszerzeń Paste Enforcer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
Oficjalny URL https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Opis It will type the contents of your Clipboard so you can paste text in websites that block it
Rozmiar pliku 64.39 KB
Liczba instalacji 1,677
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-12-12
Data Publikacji 2018-12-06
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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
}