Random Text Generator

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

Hvad er Random Text Generator?

Random Text Generator er en Chrome-udvidelse udviklet af https://shobi.in, og dens hovedfunktion er "Insert any amount of fake data to a form field. Easy Peasy".

Udvidelsesskærmbilleder

screenshot

Download Random Text Generator-udvidelses-CRX-fil

Download Random Text Generator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Officiel URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Beskrivelse Insert any amount of fake data to a form field. Easy Peasy
Filstørrelse 719 KB
Antal Installationer 514
Nuværende Version 1.0.1
Senest Opdateret 2018-11-16
Udgivelsesdato 2018-11-14
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler https://shobi.in
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/ppshobi/chrome-random-text-generator
Hjælpeside-URL https://github.com/ppshobi/chrome-random-text-generator/issues
Understøttede Sprog 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'"
}