Advanced Tabs
More power for your tabs
什么是Advanced Tabs?
Advanced Tabs是由Snackbits开发的Chrome扩展程序,该扩展的主要功能是“More power for your tabs”。
扩展截图
下载Advanced Tabs扩展crx文件
下载Advanced Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Advanced Tabs gives your browser some more power for your tabs. Current feature set: - Keyboard shortcut to create new tab next to current tab - Keyboard shortcut to duplicate current tab - Keyboard shortcut to move selected tab(s) to a new window If you have a feature request, feel free to contact me (rate the extension and write a comment). This is just a prototype with minimal functionality.
扩展基本信息
名称 | |
ID | elamcamcmfljngapamiephddjoggbgnk |
官方URL | https://chromewebstore.google.com/detail/advanced-tabs/elamcamcmfljngapamiephddjoggbgnk |
简介 | More power for your tabs |
文件大小 | 12.87 KB |
安装次数 | 129 |
当前版本 | 1.1.0 |
更新时间 | 2023-01-17 |
上架时间 | 2018-09-24 |
评分 | 5.00/5 共1次评分 |
开发者 | Snackbits |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "WebIT-Service", "name": "__MSG_extName__", "version": "1.1.0", "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "images\/icon-32.png", "default_popup": "options.html", "default_title": "__MSG_actionTitle__" }, "commands": { "new-tab-next-to-current": { "suggested_key": { "default": "Alt+T" }, "description": "__MSG_newTabHotkey__" }, "duplicate-tab": { "suggested_key": { "default": "Alt+D" }, "description": "__MSG_duplicateTabHotkey__" }, "move-tab-to-new-window": { "suggested_key": { "default": "Alt+Shift+T" }, "description": "__MSG_moveTabToNewWindowHotkey__" } }, "options_ui": { "open_in_tab": false, "page": "options.html" } } |