Record click bot

record clicks and replay

Record click botคืออะไร?

Record click bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย atallah-salah และคุณลักษณะหลักของมันคือ "record clicks and replay"

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

screenshot

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

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

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

                        This is a test chrome-extension for POC.

Record clicks on websites and replay theses clicks on specific play time

Note: this version is test only and may could not work on all cases                    

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

ชื่อ Record click bot Record click bot
ID bmchoceeddggdndimacemddemmckhmpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/record-click-bot/bmchoceeddggdndimacemddemmckhmpg
คำอธิบาย record clicks and replay
ขนาดไฟล์ 12.47 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2021-08-04
วันที่เผยแพร่ 2021-08-04
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา atallah-salah
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Record click bot",
    "description": "record clicks and replay",
    "version": "3.0",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_cion": "icon_128.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}