Tab Switcher Bot

Automatically switch the opened tabs every 20 seconds.

Tab Switcher Bot là gì?

Tab Switcher Bot là một tiện ích mở rộng Chrome được phát triển bởi Devendra Singh Bhandari, và tính năng chính của nó là "Automatically switch the opened tabs every 20 seconds.".

Ả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 Tab Switcher Bot

Tải xuống các tệp mở rộng Tab Switcher Bot 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

                        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                    

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

Tên Tab Switcher Bot Tab Switcher Bot
ID emljlgokicofjcjihdogdioglcgemien
URL Chính Thức https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien
Mô tả Automatically switch the opened tabs every 20 seconds.
Kích Thước Tệp 53.9 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.2 beta
Cập Nhật Lần Cuối 2022-04-13
Ngày Phát Hành 2022-04-07
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Devendra Singh Bhandari
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}