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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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:\/\/*\/*"
]
} | |