NextTab
A tool that automatically switches to the next tab in a list
Was ist NextTab?
NextTab ist eine Chrome-Erweiterung, die von saqfish entwickelt wurde, und ihr Hauptmerkmal ist "A tool that automatically switches to the next tab in a list".
Erweiterungsscreenshots
NextTab-Erweiterungs-CRX-Datei herunterladen
Laden Sie NextTab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
Grundlegende Informationen zur Erweiterung
Name | NextTab |
ID | fnalnialandajhfaidhanakabnfbngij |
Offizielle URL | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
Beschreibung | A tool that automatically switches to the next tab in a list |
Dateigröße | 1.14 MB |
Installationsanzahl | 18 |
Aktuelle Version | 0.0.3 |
Letztes Update | 2020-10-24 |
Veröffentlichungsdatum | 2020-10-24 |
Entwickler | saqfish |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/saqfish/NextTab |
Hilfeseite URL | https://github.com/saqfish/NextTab/issues |
URL der Datenschutzrichtlinien-Seite | http://saqfish.com/mtb_policy.html |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 2, "name": "NextTab", "short_name": "NextTab", "description": "A tool that automatically switches to the next tab in a list", "background": { "scripts": [ "lib\/js\/browser-polyfill.js", "background.js" ] }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "default_title": "NextTab", "default_popup": "popup.html" }, "permissions": [ "tabs", "downloads", "storage" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_ui": { "page": ".\/options.html", "open_in_tab": true } } |