NextTab
A tool that automatically switches to the next tab in a list
什么是NextTab?
NextTab是由saqfish开发的Chrome扩展程序,该扩展的主要功能是“A tool that automatically switches to the next tab in a list”。
扩展截图
下载NextTab扩展crx文件
下载NextTab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
扩展基本信息
名称 | NextTab |
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 } } |