Chromium browser automation

Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play

Chromium browser automation란 무엇입니까?

Chromium browser automation은(는) https://chrome-automation.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play"입니다.

확장 프로그램 스크린샷

screenshot

Chromium browser automation 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        1. CBA gives ability to setup step-by-step code injections from the Extensions popup interface.
2. Record user interactions while navigating web pages (filling forms, clicking buttons, hyperlinks and smart algorithms for DOM element path calculations).
3. Save Projects in your browser's local storage.
4. Step by step code injection.
5. Import, export and share projects with collaborators.
6. Extensions ready functions now available.
7. Implement useful Extension placeholders.
8. Write your own code to access the web page's DOM.
9. And much much more...

Github: https://github.com/browser-automation/cba
Issues and feature requests: https://github.com/browser-automation/cba/issues
Privacy Policy: https://chrome-automation.com/privacy
Contact email: [email protected]                    

확장 프로그램 기본 정보

이름 Chromium browser automation Chromium browser automation
ID jmbmjnojfkcohdpkpjmeeijckfbebbon
공식 URL https://chromewebstore.google.com/detail/chromium-browser-automati/jmbmjnojfkcohdpkpjmeeijckfbebbon
설명 Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play
파일 크기 130 KB
설치 횟수 45,224
현재 버전 9.1.0
최근 업데이트 2021-04-03
출시 날짜 2019-05-07
평점 3.47/5 총 189 개의 평점
개발자 https://chrome-automation.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chrome-automation.com/
지원되는 언어 en
manifest.json
{
    "background": {
        "page": "back.html"
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/jquery-1.7.2.min.js",
                "js\/cs.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play",
    "icons": {
        "128": "css\/icons\/128x128.png",
        "16": "css\/icons\/16x16.png",
        "48": "css\/icons\/48x48.png"
    },
    "manifest_version": 2,
    "name": "Chromium browser automation",
    "options_page": "options.html",
    "permissions": [
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "9.1.0"
}