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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |