Random Text Generator

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

Co je Random Text Generator?

Random Text Generator je rozšíření Chrome vyvinuté https://shobi.in, a jeho hlavní funkcí je „Insert any amount of fake data to a form field. Easy Peasy“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Random Text Generator

Stáhněte si soubory rozšíření Random Text Generator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Oficiální URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Popis Insert any amount of fake data to a form field. Easy Peasy
Velikost souboru 719 KB
Počet instalací 514
Aktuální Verze 1.0.1
Poslední Aktualizace 2018-11-16
Datum Vydání 2018-11-14
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář https://shobi.in
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ppshobi/chrome-random-text-generator
URL Stránky Nápovědy https://github.com/ppshobi/chrome-random-text-generator/issues
Podporované Jazyky 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'"
}