Programming Browser: Web Automation Toolkit

Web automation toolkit

Programming Browser: Web Automation Toolkit là gì?

Programming Browser: Web Automation Toolkit là một tiện ích mở rộng Chrome được phát triển bởi Programming Browser, và tính năng chính của nó là "Web automation toolkit".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Programming Browser: Web Automation Toolkit

Tải xuống các tệp mở rộng Programming Browser: Web Automation Toolkit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Programming Browser is a web automation tool that allows you to automate any task on the web. It's similar to selenium automation. But with a drag and drop programmable interface. You do not have know programming to use Programming Browser, every block explain itself.

What can you automate?

Pretty much you can automate anything on the web, if you see something that repeat alot of times on your browser, you can use Programming Browser to do it for you. Programming Browser is faster than any human, so your automation will be compete much faster.

After you created a script on Programming Browser you can create a shortcut for your script and run the automation with just one tap.

Features:

- Drag and drop programmable interface
- Create shortcut for each script
- Import and export your Programming Browser script (you can write once and share the script to a new device)
- Flexible programming language                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Programming Browser: Web Automation Toolkit Programming Browser: Web Automation Toolkit
ID ackgnkgcabnnbkgledgggmojocblemic
URL Chính Thức https://chromewebstore.google.com/detail/programming-browser-web-a/ackgnkgcabnnbkgledgggmojocblemic
Mô tả Web automation toolkit
Kích Thước Tệp 61.11 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 1.0.22
Cập Nhật Lần Cuối 2022-07-01
Ngày Phát Hành 2022-06-28
Nhà Phát Triển Programming Browser
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.programmingbrowser.com
URL Trang Chính Sách Bảo Mật https://www.programmingbrowser.com/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Programming Browser: Web Automation Toolkit",
    "version": "1.0.22",
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "downloads",
        "declarativeNetRequest",
        "debugger",
        "notifications"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "mobile_user_agent_rule",
                "enabled": false,
                "path": "rules\/mobile_user_agent_rule.json"
            },
            {
                "id": "desktop_user_agent_rule",
                "enabled": false,
                "path": "rules\/desktop_user_agent_rule.json"
            }
        ]
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Programming Browser",
        "default_popup": "popup.html"
    },
    "description": "Web automation toolkit",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Jeeva",
    "background": {
        "service_worker": "worker.min.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.programmingbrowser.com\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "wakeup.js"
            ],
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.programmingbrowser.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    }
}