Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
Cos'è Tab Switcher Bot?
Tab Switcher Bot è un'estensione di Chrome sviluppata da Devendra Singh Bhandari, e la sua funzione principale è "Automatically switch the opened tabs every 20 seconds.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Switcher Bot
Scarica i file di estensione Tab Switcher Bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
URL Ufficiale | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
Descrizione | Automatically switch the opened tabs every 20 seconds. |
Dimensione del File | 53.9 KB |
Conteggio Installazioni | 120 |
Versione Corrente | 1.2 beta |
Ultimo Aggiornamento | 2022-04-13 |
Data di Pubblicazione | 2022-04-07 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | Devendra Singh Bhandari |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/*" ] } |