Close Unpinned Tabs
Close all unpinned tabs with a short cut "Alt + Shift + O"
什么是Close Unpinned Tabs?
Close Unpinned Tabs是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Close all unpinned tabs with a short cut "Alt + Shift + O"”。
扩展截图
下载Close Unpinned Tabs扩展crx文件
下载Close Unpinned Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to set a shortcut to close all unpinned tabs and pin/unpin an existing tab from the current window. Alt+Shift+O is the default to close tabs Alt + Shift + P to pin/unpin a tab.
扩展基本信息
名称 | Close Unpinned Tabs |
ID | ajijmjelflcpkaapmddfoklcamplblpb |
官方URL | https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb |
简介 | Close all unpinned tabs with a short cut "Alt + Shift + O" |
文件大小 | 293 KB |
安装次数 | 115 |
当前版本 | 0.2 |
更新时间 | 2019-09-05 |
上架时间 | 2019-09-05 |
评分 | 4.50/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Unpinned Tabs", "version": "0.2", "description": "Close all unpinned tabs with a short cut \"Alt + Shift + O\"", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "broom.png", "32": "broom.png", "48": "broom.png", "128": "broom128.png" }, "default_title": "Clutter" }, "commands": { "toggle_pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Toggle if the pin is tabbed" }, "close_unpinned": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close all tabs excepts pinned ones" } }, "manifest_version": 2 } |