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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}