Close Unpinned Tabs
Close all unpinned tabs with a short cut "Alt + Shift + O"
Vad är Close Unpinned Tabs?
Close Unpinned Tabs är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Close all unpinned tabs with a short cut "Alt + Shift + O"".
Tilläggsskärmbilder
Ladda ner Close Unpinned Tabs-förlängningens CRX-fil
Ladda ner Close Unpinned Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | ajijmjelflcpkaapmddfoklcamplblpb |
| Officiell webbadress | https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb |
| Beskrivning | Close all unpinned tabs with a short cut "Alt + Shift + O" |
| Filstorlek | 293 KB |
| Antal Installationer | 115 |
| Aktuell Version | 0.2 |
| Senast Uppdaterad | 2019-09-05 |
| Publiceringsdatum | 2019-09-05 |
| Betyg | 4.50/5 Totalt 2 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Stödda Språk | 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
} | |