Tab Switcher Bot
Automatically switch the opened tabs every 20 seconds.
Vad är Tab Switcher Bot?
Tab Switcher Bot är en Chrome-tillägg utvecklad av Devendra Singh Bhandari, och dess huvudfunktion är "Automatically switch the opened tabs every 20 seconds.".
Tilläggsskärmbilder
Ladda ner Tab Switcher Bot-förlängningens CRX-fil
Ladda ner Tab Switcher Bot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | emljlgokicofjcjihdogdioglcgemien |
| Officiell webbadress | https://chromewebstore.google.com/detail/tab-switcher-bot/emljlgokicofjcjihdogdioglcgemien |
| Beskrivning | Automatically switch the opened tabs every 20 seconds. |
| Filstorlek | 53.9 KB |
| Antal Installationer | 120 |
| Aktuell Version | 1.2 beta |
| Senast Uppdaterad | 2022-04-13 |
| Publiceringsdatum | 2022-04-07 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | Devendra Singh Bhandari |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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:\/\/*\/*"
]
} | |