Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
Co je Tab Switcher Bot?
Tab Switcher Bot je rozšíření Chrome vyvinuté Devendra Singh Bhandari, a jeho hlavní funkcí je „Automatically switch the opened tabs every 20 seconds.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tab Switcher Bot
Stáhněte si soubory rozšíření Tab Switcher Bot ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
Oficiální URL | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
Popis | Automatically switch the opened tabs every 20 seconds. |
Velikost souboru | 53.9 KB |
Počet instalací | 120 |
Aktuální Verze | 1.2 beta |
Poslední Aktualizace | 2022-04-13 |
Datum Vydání | 2022-04-07 |
Hodnocení | 4.67/5 Celkem 3 Hodnocení |
Vývojář | Devendra Singh Bhandari |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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:\/\/*\/*" ] } |