NexTab
Open new tabs to the left or right of your active tab.
什么是NexTab?
NexTab是由https://nextab.co开发的Chrome扩展程序,该扩展的主要功能是“Open new tabs to the left or right of your active tab.”。
扩展截图
下载NexTab扩展crx文件
下载NexTab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever been frustrated that new tabs open at the end of all your current tabs. Then this is for you. NexTab simply extends the default browser functionality for opening new tabs by opening them next to your current tab, instead of at the end. NexTab comes with two predefined shortcuts out of the box. Or if you'd prefer to customise them, open the popup and follow the link to add your own.
扩展基本信息
名称 | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
官方URL | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
简介 | Open new tabs to the left or right of your active tab. |
文件大小 | 673 KB |
安装次数 | 113 |
当前版本 | 0.0.3 |
更新时间 | 2020-06-01 |
上架时间 | 2020-06-01 |
评分 | 5.00/5 共2次评分 |
开发者 | https://nextab.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://nextab.co |
帮助页面URL | https://nextab.co |
隐私政策页面URL | https://nextab.co |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NexTab", "description": "Open new tabs to the left or right of your active tab.", "version": "0.0.3", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_title": "NexTab", "default_popup": "popup\/popup.html" }, "background": { "page": "background.html" }, "commands": { "open-right": { "suggested_key": { "default": "Alt+T", "mac": "Alt+T", "windows": "Alt+T" }, "description": "Opens new tabs to the right of your current tab" }, "open-left": { "suggested_key": { "default": "Alt+Shift+T", "mac": "Alt+Shift+T", "windows": "Alt+Shift+T" }, "description": "Opens new tabs to the left of your current tab" } }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'" } |