Close All Tabs On Left
Closes all tabs on the left of current tab
什么是Close All Tabs On Left?
Close All Tabs On Left是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Closes all tabs on the left of current tab”。
下载Close All Tabs On Left扩展crx文件
下载Close All Tabs On Left扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.
扩展基本信息
名称 | Close All Tabs On Left |
ID | afmdjfefjcfmedhgbegphdjhfckifaij |
官方URL | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij |
简介 | Closes all tabs on the left of current tab |
文件大小 | 6.72 KB |
安装次数 | 1,286 |
当前版本 | 1.2 |
更新时间 | 2018-04-20 |
上架时间 | 2018-04-20 |
评分 | 5.00/5 共8次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close All Tabs On Left", "description": "Closes all tabs on the left of current tab", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "commands": { "close-all-left-tabs": { "suggested_key": { "default": "Alt+Shift+Q", "mac": "Alt+Shift+Q" }, "description": "Close all tabs on the left of current tab" } }, "permissions": [ "tabs" ] } |