Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
O que é Tab Switcher Bot?
Tab Switcher Bot é uma extensão do Chrome desenvolvida por Devendra Singh Bhandari, e sua principal característica é "Automatically switch the opened tabs every 20 seconds.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Switcher Bot
Baixe arquivos de extensão Tab Switcher Bot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
URL Oficial | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
Descrição | Automatically switch the opened tabs every 20 seconds. |
Tamanho do Arquivo | 53.9 KB |
Contagem de Instalações | 120 |
Versão Atual | 1.2 beta |
Última Atualização | 2022-04-13 |
Data de Publicação | 2022-04-07 |
Classificação | 4.67/5 Total de 3 Avaliações |
Desenvolvedor | Devendra Singh Bhandari |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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:\/\/*\/*" ] } |