Random Text Generator

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

Was ist Random Text Generator?

Random Text Generator ist eine Chrome-Erweiterung, die von https://shobi.in entwickelt wurde, und ihr Hauptmerkmal ist "Insert any amount of fake data to a form field. Easy Peasy".

Erweiterungsscreenshots

screenshot

Random Text Generator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Random Text Generator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Offizielle URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Beschreibung Insert any amount of fake data to a form field. Easy Peasy
Dateigröße 719 KB
Installationsanzahl 514
Aktuelle Version 1.0.1
Letztes Update 2018-11-16
Veröffentlichungsdatum 2018-11-14
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler https://shobi.in
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ppshobi/chrome-random-text-generator
Hilfeseite URL https://github.com/ppshobi/chrome-random-text-generator/issues
Unterstützte Sprachen 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'"
}