Code Gen
Automate code generator
What is Code Gen?
Code Gen is a Chrome extension developed by sippakorn.prem, and its main feature is "Automate code generator".
Extension Screenshots
Download Code Gen Extension CRX File
Download Code Gen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Code Gen |
ID | pbdnkibbagoclabhijnllmalclnhobpo |
Official URL | https://chromewebstore.google.com/detail/code-gen/pbdnkibbagoclabhijnllmalclnhobpo |
Description | Automate code generator |
File Size | 319 KB |
Installation Count | 39 |
Current Version | 1.0.0 |
Last Updated | 2021-03-16 |
Publish Date | 2021-03-16 |
Developer | sippakorn.prem |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sippakorn-prem/automate-code-gen |
Supported Languages | 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 } } |