Random Text Generator

Insert any amount of fake data to a form field. Easy Peasy

O que é Random Text Generator?

Random Text Generator é uma extensão do Chrome desenvolvida por https://shobi.in, e sua principal característica é "Insert any amount of fake data to a form field. Easy Peasy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Random Text Generator

Baixe arquivos de extensão Random Text Generator 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

                        This is a google chrome extension which will generate a random text of given length, and will paste the generated text into the last active input form field.

Use Cmd + Shift + I to insert fakeness in Mac
Use Ctrl + Shift + F to insert fakeness in Windows                    

Informações Básicas da Extensão

Nome Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
URL Oficial https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Descrição Insert any amount of fake data to a form field. Easy Peasy
Tamanho do Arquivo 719 KB
Contagem de Instalações 514
Versão Atual 1.0.1
Última Atualização 2018-11-16
Data de Publicação 2018-11-14
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor https://shobi.in
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ppshobi/chrome-random-text-generator
URL da Página de Ajuda https://github.com/ppshobi/chrome-random-text-generator/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Text Generator",
    "description": "Insert any amount of fake data to a form field. Easy Peasy",
    "version": "1.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "title": "Random Text Generator"
    },
    "commands": {
        "insert-fake": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+I",
                "windows": "Ctrl+Shift+F"
            },
            "description": "Insert any amount of fake data to a form field"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "512": "icon\/icon_512.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}