Data Generator
Create random name, job title or text data.
Data Generatorとは何ですか?
Data Generatorはalexander.leaによって開発されたChromeの拡張機能で、その主な機能は「Create random name, job title or text data.」です。
拡張機能のスクリーンショット
Data Generator拡張機能のCRXファイルをダウンロード
Data Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        Generates random Name, Job Title and a paragraph of text, for quick test data generation.
Automatically copies generated text to the clipboard to reduce the number of clicks necessary.
Uses:
- http://baconipsum.com/json-api/ for random paragraph
- https://randomuser.me/ for random name                     拡張機能の基本情報
| 名前 |  | 
| ID | ocaojfcfeffaeabdhhplnanikiimgndi | 
| 公式URL | https://chromewebstore.google.com/detail/data-generator/ocaojfcfeffaeabdhhplnanikiimgndi | 
| 説明 | Create random name, job title or text data. | 
| ファイルサイズ | 67.97 KB | 
| インストール数 | 152 | 
| 現在のバージョン | 1.0.3 | 
| 最終更新日 | 2016-09-08 | 
| 公開日 | 2016-09-08 | 
| 開発者 | alexander.lea | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | en-GB | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Data Generator",
    "description": "Create random name, job title or text data.",
    "version": "1.0.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.1.0.min.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "clipboardWrite"
    ]
} | |