Code Gen
Automate code generator
Code Genとは何ですか?
Code Genはsippakorn.premによって開発されたChromeの拡張機能で、その主な機能は「Automate code generator」です。
拡張機能のスクリーンショット
Code Gen拡張機能のCRXファイルをダウンロード
Code Gen拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Code Gen use to record user activity to generate a javascript code (for QA Automation tester).
checkout repo: https://github.com/sippakorn-prem/automate-code-gen
Features
- record user activity (browser event click, mouseover, double click, etc.) and display the recorded user activity to the extension popup
- generate recorded user activity into a javascript code (for QA Automation tester) 拡張機能の基本情報
| 名前 | |
| ID | pbdnkibbagoclabhijnllmalclnhobpo |
| 公式URL | https://chromewebstore.google.com/detail/code-gen/pbdnkibbagoclabhijnllmalclnhobpo |
| 説明 | Automate code generator |
| ファイルサイズ | 319 KB |
| インストール数 | 39 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2021-03-16 |
| 公開日 | 2021-03-16 |
| 開発者 | sippakorn.prem |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/sippakorn-prem/automate-code-gen |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Code Gen",
"version": "1.0.0",
"manifest_version": 2,
"description": "Automate code generator",
"permissions": [
"storage",
"activeTab",
"*:\/\/*\/"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_title": "Code A Gen",
"default_popup": "index.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |