NextTab
A tool that automatically switches to the next tab in a list
Co to jest NextTab?
NextTab to rozszerzenie Chrome opracowane przez saqfish, a jego główną funkcją jest „A tool that automatically switches to the next tab in a list”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NextTab
Pobierz pliki rozszerzeń NextTab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
NextTab will let you select a list of open tabs and automatically switch between them on refresh. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fnalnialandajhfaidhanakabnfbngij |
| Oficjalny URL | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
| Opis | A tool that automatically switches to the next tab in a list |
| Rozmiar pliku | 1.14 MB |
| Liczba instalacji | 18 |
| Aktualna Wersja | 0.0.3 |
| Ostatnia Aktualizacja | 2020-10-24 |
| Data Publikacji | 2020-10-24 |
| Deweloper | saqfish |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/saqfish/NextTab |
| Adres URL Strony Pomocy | https://github.com/saqfish/NextTab/issues |
| Adres URL Strony Polityki Prywatności | http://saqfish.com/mtb_policy.html |
| Obsługiwane Języki | 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
}
} | |