Tab Switcher Bot

Automatically switch the opened tabs every 20 seconds.

Tab Switcher Botคืออะไร?

Tab Switcher Bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Devendra Singh Bhandari และคุณลักษณะหลักของมันคือ "Automatically switch the opened tabs every 20 seconds."

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

screenshot

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

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

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

                        This extension automatically switch tabs. Click the extension icon to enable it. Click the extension icon again to disable it.

Change Log:
1.2 - Bug fixes
1.1 - Bug fixes
1.0 - Initial release                    

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

ชื่อ Tab Switcher Bot Tab Switcher Bot
ID emljlgokicofjcjihdogdioglcgemien
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien
คำอธิบาย Automatically switch the opened tabs every 20 seconds.
ขนาดไฟล์ 53.9 KB
จำนวนการติดตั้ง 120
เวอร์ชันปัจจุบัน 1.2 beta
อัปเดตครั้งล่าสุด 2022-04-13
วันที่เผยแพร่ 2022-04-07
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Devendra Singh Bhandari
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Switcher Bot",
    "description": "Automatically switch the opened tabs every 20 seconds.",
    "version": "1.2",
    "version_name": "1.2 beta",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "author": "Devendra Singh Bhandari",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery-3.4.1.min.js",
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/images\/icon-16.png",
            "32": "assets\/images\/icon-32.png",
            "48": "assets\/images\/icon-48.png",
            "128": "assets\/images\/icon-128.png"
        }
    },
    "icons": {
        "16": "assets\/images\/icon-16.png",
        "32": "assets\/images\/icon-32.png",
        "48": "assets\/images\/icon-48.png",
        "128": "assets\/images\/icon-128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}