Random Text Generator

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

Random Text Generatorとは何ですか?

Random Text Generatorはhttps://shobi.inによって開発されたChromeの拡張機能で、その主な機能は「Insert any amount of fake data to a form field. Easy Peasy」です。

拡張機能のスクリーンショット

screenshot

Random Text Generator拡張機能のCRXファイルをダウンロード

Random Text Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
公式URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
説明 Insert any amount of fake data to a form field. Easy Peasy
ファイルサイズ 719 KB
インストール数 514
現在のバージョン 1.0.1
最終更新日 2018-11-16
公開日 2018-11-14
評価 2.33/5 合計 3 レビュー
開発者 https://shobi.in
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ppshobi/chrome-random-text-generator
ヘルプページのURL https://github.com/ppshobi/chrome-random-text-generator/issues
対応言語 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'"
}