Random Text Generator

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

Apa itu Random Text Generator?

Random Text Generator adalah ekstensi Chrome yang dikembangkan oleh https://shobi.in, dan fitur utamanya adalah "Insert any amount of fake data to a form field. Easy Peasy".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Random Text Generator

Unduh file ekstensi Random Text Generator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
URL Resmi https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Deskripsi Insert any amount of fake data to a form field. Easy Peasy
Ukuran File 719 KB
Jumlah Instalasi 514
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2018-11-16
Tanggal Publikasi 2018-11-14
Penilaian 2.33/5 Total 3 Penilaian
Pengembang https://shobi.in
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ppshobi/chrome-random-text-generator
URL Halaman Bantuan https://github.com/ppshobi/chrome-random-text-generator/issues
Bahasa yang Didukung 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'"
}