Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
Qu'est-ce que Tab Switcher Bot ?
Tab Switcher Bot est une extension Chrome développée par Devendra Singh Bhandari, et sa fonction principale est "Automatically switch the opened tabs every 20 seconds.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Switcher Bot
Téléchargez les fichiers d'extension Tab Switcher Bot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
URL Officiel | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
Description | Automatically switch the opened tabs every 20 seconds. |
Taille du Fichier | 53.9 KB |
Nombre d'Installations | 120 |
Version Actuelle | 1.2 beta |
Dernière Mise à Jour | 2022-04-13 |
Date de Publication | 2022-04-07 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | Devendra Singh Bhandari |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |