Tab Switcher Bot

Automatically switch the opened tabs every 20 seconds.

What is Tab Switcher Bot?

Tab Switcher Bot is a Chrome extension developed by Devendra Singh Bhandari, and its main feature is "Automatically switch the opened tabs every 20 seconds.".

Extension Screenshots

screenshot

Download Tab Switcher Bot Extension CRX File

Download Tab Switcher Bot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tab Switcher Bot Tab Switcher Bot
ID emljlgokicofjcjihdogdioglcgemien
Official URL https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien
Description Automatically switch the opened tabs every 20 seconds.
File Size 53.9 KB
Installation Count 120
Current Version 1.2 beta
Last Updated 2022-04-13
Publish Date 2022-04-07
Rating 4.67/5 Total 3 Ratings
Developer Devendra Singh Bhandari
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
    ]
}