Random Text Generator

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

Wat is Random Text Generator?

Random Text Generator is een Chrome-extensie ontwikkeld door https://shobi.in, en de belangrijkste functie is "Insert any amount of fake data to a form field. Easy Peasy".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Random Text Generator

Download Random Text Generator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Officiële URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Beschrijving Insert any amount of fake data to a form field. Easy Peasy
Bestandsgrootte 719 KB
Aantal Installaties 514
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-11-16
Publicatiedatum 2018-11-14
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar https://shobi.in
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ppshobi/chrome-random-text-generator
Help Pagina-URL https://github.com/ppshobi/chrome-random-text-generator/issues
Ondersteunde Talen 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'"
}