NextTab
A tool that automatically switches to the next tab in a list
Vad är NextTab?
NextTab är en Chrome-tillägg utvecklad av saqfish, och dess huvudfunktion är "A tool that automatically switches to the next tab in a list".
Tilläggsskärmbilder
Ladda ner NextTab-förlängningens CRX-fil
Ladda ner NextTab-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
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
Grundläggande Information om Tillägg
Namn | NextTab |
ID | fnalnialandajhfaidhanakabnfbngij |
Officiell webbadress | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
Beskrivning | A tool that automatically switches to the next tab in a list |
Filstorlek | 1.14 MB |
Antal Installationer | 18 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2020-10-24 |
Publiceringsdatum | 2020-10-24 |
Utvecklare | saqfish |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/saqfish/NextTab |
Hjälpsida URL | https://github.com/saqfish/NextTab/issues |
URL till Sekretesspolicy Sidan | http://saqfish.com/mtb_policy.html |
Stödda Språk | 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 } } |