Tab Organizer

Organizes and Rearranges tabs by URL.

什么是Tab Organizer?

Tab Organizer是由Devin Soni开发的Chrome扩展程序,该扩展的主要功能是“Organizes and Rearranges tabs by URL.”。

扩展截图

screenshot

下载Tab Organizer扩展crx文件

下载Tab Organizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        *** FEATURED ON PRODUCT HUNT AND LIFEHACKER ***

Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order.

Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs.

* * * NEW IN VERSION 1.0: * * *
* Options page to manage settings
* Automatically sort tabs every 5, 30, or 60 minutes.
* Keyboard shortcut "Ctrl + Shift + A" to sort on command.                    

扩展基本信息

名称 Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
官方URL https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
简介 Organizes and Rearranges tabs by URL.
文件大小 8.1 KB
安装次数 6,272
当前版本 1.0
更新时间 2016-05-12
上架时间 2016-05-11
评分 4.43/5 共37次评分
开发者 Devin Soni
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Organizer",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Organizes and Rearranges tabs by URL.",
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js",
            "options.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Activate sorting"
        }
    },
    "options_page": "options.html"
}