Code Gen

Automate code generator

Code Gen란 무엇입니까?

Code Gen은(는) sippakorn.prem에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate code generator"입니다.

확장 프로그램 스크린샷

screenshot

Code Gen 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 Code Gen Code Gen
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
이메일 [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
    }
}