Tab Switcher Bot

Automatically switch the opened tabs every 20 seconds.

Wat is Tab Switcher Bot?

Tab Switcher Bot is een Chrome-extensie ontwikkeld door Devendra Singh Bhandari, en de belangrijkste functie is "Automatically switch the opened tabs every 20 seconds.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Tab Switcher Bot

Download Tab Switcher Bot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Tab Switcher Bot Tab Switcher Bot
ID emljlgokicofjcjihdogdioglcgemien
Officiële URL https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien
Beschrijving Automatically switch the opened tabs every 20 seconds.
Bestandsgrootte 53.9 KB
Aantal Installaties 120
Huidige Versie 1.2 beta
Laatst Bijgewerkt 2022-04-13
Publicatiedatum 2022-04-07
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Devendra Singh Bhandari
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
    ]
}