Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
Apa itu Tab Switcher Bot?
Tab Switcher Bot adalah ekstensi Chrome yang dikembangkan oleh Devendra Singh Bhandari, dan fitur utamanya adalah "Automatically switch the opened tabs every 20 seconds.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tab Switcher Bot
Unduh file ekstensi Tab Switcher Bot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Tab Switcher Bot |
ID | emljlgokicofjcjihdogdioglcgemien |
URL Resmi | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
Deskripsi | Automatically switch the opened tabs every 20 seconds. |
Ukuran File | 53.9 KB |
Jumlah Instalasi | 120 |
Versi Saat Ini | 1.2 beta |
Terakhir Diperbarui | 2022-04-13 |
Tanggal Publikasi | 2022-04-07 |
Penilaian | 4.67/5 Total 3 Penilaian |
Pengembang | Devendra Singh Bhandari |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |