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. 擴展基本資訊
| 名稱 | |
| ID | ajijmjelflcpkaapmddfoklcamplblpb |
| 官方網址 | 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
} | |