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 |
官方網址 | 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:\/\/*\/*" ] } |