Automator

Automate browser actions easily

Automatorคืออะไร?

Automator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย root.dev.urandom และคุณลักษณะหลักของมันคือ "Automate browser actions easily"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Automator

ดาวน์โหลดไฟล์ส่วนขยาย Automator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Extension for easy web applications testing.

Like Selenium or WebDriver it allows to interact with data on loaded pages using CLI scripts or CI processes.

Usage is very simple - install this extension, register on our website, setup your unique token and then you can do what you want!

Important notice: We active develop this extension right now. So, if you want - we are open for your contribution!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Automator Automator
ID bommlebcdbhpnlmjdokpdcongnpokkjc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/automator/bommlebcdbhpnlmjdokpdcongnpokkjc
คำอธิบาย Automate browser actions easily
ขนาดไฟล์ 69.53 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-12-01
วันที่เผยแพร่ 2020-08-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา root.dev.urandom
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automator",
    "short_name": "automator-browser-extension",
    "description": "Automate browser actions easily",
    "author": "awesome-development",
    "version": "1.0.1",
    "icons": {
        "16": "assets\/img\/icons\/16x16.png",
        "48": "assets\/img\/icons\/48x48.png",
        "128": "assets\/img\/icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": "assets\/img\/icons\/48x48.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Browser automator"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "minimum_chrome_version": "49.0",
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs"
    ]
}