Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
什么是Tab Switcher Bot?
Tab Switcher Bot是由Devendra Singh Bhandari开发的Chrome扩展程序,该扩展的主要功能是“Automatically switch the opened tabs every 20 seconds.”。
扩展截图
下载Tab Switcher Bot扩展crx文件
下载Tab Switcher Bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
官方URL | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
简介 | Automatically switch the opened tabs every 20 seconds. |
文件大小 | 53.9 KB |
安装次数 | 120 |
当前版本 | 1.2 beta |
更新时间 | 2022-04-13 |
上架时间 | 2022-04-07 |
评分 | 4.67/5 共3次评分 |
开发者 | Devendra Singh Bhandari |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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:\/\/*\/*" ] } |