Tab Grouper

Consolidate your tabs into a list.

What is Tab Grouper?

Tab Grouper is a Chrome extension developed by Leslie Heinzen, and its main feature is "Consolidate your tabs into a list.".

Extension Screenshots

screenshot

Download Tab Grouper Extension CRX File

Download Tab Grouper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Tab Grouper will gobble up and close all of your open tabs, and spit them out into a list on a single, new, fresh tab.                    

Extension Basic Information

Name Tab Grouper Tab Grouper
ID mbgligdomdgbbenibfnlociabpmidilp
Official URL https://chrome.google.com/webstore/detail/tab-grouper/mbgligdomdgbbenibfnlociabpmidilp
Description Consolidate your tabs into a list.
File Size 11.99 KB
Installation Count 18
Current Version 0.3.0
Last Updated 2018-05-10
Publish Date 2018-05-10
Developer Leslie Heinzen
Payment Type free
Help Page URL https://github.com/Zero-man/tab-grouper-chrome/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Grouper",
    "version": "0.3.0",
    "description": "Consolidate your tabs into a list.",
    "homepage_url": "https:\/\/github.com\/Zero-man\/tab-grouper-chrome",
    "icons": {
        "32": "icons\/fish-64.png",
        "48": "icons\/fish-64.png",
        "64": "icons\/fish-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "group-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+G"
            },
            "description": "Close all tabs."
        }
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "32": "icons\/fish-64.png"
        },
        "default_title": "TabGrouper",
        "default_popup": "popup\/popup.html"
    }
}