Paste Enforcer

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

O que é Paste Enforcer?

Paste Enforcer é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "It will type the contents of your Clipboard so you can paste text in websites that block it".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Paste Enforcer

Baixe arquivos de extensão Paste Enforcer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
URL Oficial https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Descrição It will type the contents of your Clipboard so you can paste text in websites that block it
Tamanho do Arquivo 64.39 KB
Contagem de Instalações 1,677
Versão Atual 1.1
Última Atualização 2018-12-12
Data de Publicação 2018-12-06
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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
}