Close Unpinned Tabs

Close all unpinned tabs with a short cut "Alt + Shift + O"

Wat is Close Unpinned Tabs?

Close Unpinned Tabs is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Close all unpinned tabs with a short cut "Alt + Shift + O"".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Close Unpinned Tabs

Download Close Unpinned Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Close Unpinned Tabs Close Unpinned Tabs
ID ajijmjelflcpkaapmddfoklcamplblpb
Officiële URL https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb
Beschrijving Close all unpinned tabs with a short cut "Alt + Shift + O"
Bestandsgrootte 293 KB
Aantal Installaties 115
Huidige Versie 0.2
Laatst Bijgewerkt 2019-09-05
Publicatiedatum 2019-09-05
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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
}