NextTab
A tool that automatically switches to the next tab in a list
Что такое NextTab?
NextTab - это расширение Chrome, разработанное saqfish, и его основная функция - "A tool that automatically switches to the next tab in a list".
Снимки экрана расширения
Скачать файл CRX расширения NextTab
Скачайте файлы расширений NextTab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
NextTab will let you select a list of open tabs and automatically switch between them on refresh. Основная информация о расширении
| Название | |
| ID | fnalnialandajhfaidhanakabnfbngij |
| Официальный URL | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
| Описание | A tool that automatically switches to the next tab in a list |
| Размер файла | 1.14 MB |
| Количество установок | 18 |
| Текущая Версия | 0.0.3 |
| Последнее Обновление | 2020-10-24 |
| Дата публикации | 2020-10-24 |
| Разработчик | saqfish |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/saqfish/NextTab |
| URL страницы помощи | https://github.com/saqfish/NextTab/issues |
| URL страницы политики конфиденциальности | http://saqfish.com/mtb_policy.html |
| Поддерживаемые языки | 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
}
} | |