Random Text Generator

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

Qu'est-ce que Random Text Generator ?

Random Text Generator est une extension Chrome développée par https://shobi.in, et sa fonction principale est "Insert any amount of fake data to a form field. Easy Peasy".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Random Text Generator

Téléchargez les fichiers d'extension Random Text Generator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
URL Officiel https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Description Insert any amount of fake data to a form field. Easy Peasy
Taille du Fichier 719 KB
Nombre d'Installations 514
Version Actuelle 1.0.1
Dernière Mise à Jour 2018-11-16
Date de Publication 2018-11-14
Évaluation 2.33/5 Total 3 Évaluations
Développeur https://shobi.in
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ppshobi/chrome-random-text-generator
URL de la Page d'Aide https://github.com/ppshobi/chrome-random-text-generator/issues
Langues Prises en Charge 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'"
}