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文件

下載Chromium browser automation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}