Tab grouper

A tab grouping extension by Explosion-Scratch. This extension is open source here:…

Tab grouperとは何ですか?

Tab grouperはExplosion-Scratchによって開発されたChromeの拡張機能で、その主な機能は「A tab grouping extension by Explosion-Scratch. This extension is open source here:…」です。

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

screenshot
screenshot

Tab grouper拡張機能のCRXファイルをダウンロード

Tab grouper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping

This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!                    

拡張機能の基本情報

名前 Tab grouper Tab grouper
ID ebaakekgcpaojdlfcfmlaelgaacmdeje
公式URL https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje
説明 A tab grouping extension by Explosion-Scratch. This extension is open source here:…
ファイルサイズ 31.63 KB
インストール数 93
現在のバージョン 1.0.0
最終更新日 2021-12-05
公開日 2021-12-03
評価 5.00/5 合計 2 レビュー
開発者 Explosion-Scratch
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab grouper",
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "storage"
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "commands": {
        "group": {
            "suggested_key": {
                "default": "Ctrl+G"
            },
            "description": "Group tabs in the current window by domain"
        },
        "collapse": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Collapse non focused tab groups in the current window"
        },
        "ungroup": {
            "description": "Ungroup all tabs in the current window"
        }
    }
}