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"」です。

拡張機能のスクリーンショット

screenshot

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 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
}