Tab Grouper

Group tabs for one-click access! Copy all open tabs to clipboard with a single click.

Что такое Tab Grouper?

Tab Grouper - это расширение Chrome, разработанное lerxst, и его основная функция - "Group tabs for one-click access! Copy all open tabs to clipboard with a single click.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Tab Grouper

Скачайте файлы расширений Tab Grouper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Save currently opened tabs for accessing later. Save any number of groups with any number of tabs!

• To save a set of tabs :
1. Right-click anywhere on the webpage and click 'Save Tabs' in the context menu.
2. Enter the group name and click 'Ok' to save.
(Keyboard shortcut : 'Shift+Ctrl+m'. Modify shortcut combinations in Tools->Extensions)

• Click on the TabGrouper icon in the toolbar to access the saved groups. Use the TabGrouper options to manage groups.

• In the TabGrouper popup, use the clipboard icon to copy all the open tabs and their URLs to the clipboard.                    

Основная информация о расширении

Название Tab Grouper Tab Grouper
ID glfmdmkkhokfolknaabkokpcibhlagen
Официальный URL https://chrome.google.com/webstore/detail/tab-grouper/glfmdmkkhokfolknaabkokpcibhlagen
Описание Group tabs for one-click access! Copy all open tabs to clipboard with a single click.
Размер файла 91.91 KB
Количество установок 824
Текущая Версия 0.9.4
Последнее Обновление 2015-03-12
Дата публикации 2015-03-12
Рейтинг 3.93/5 Всего 14 оценок
Разработчик lerxst
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Grouper",
    "version": "0.9.4",
    "description": "Group tabs for one-click access! Copy all open tabs to clipboard with a single click.",
    "background": {
        "scripts": [
            "bginit.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "\/images\/icon48.png",
        "default_title": "TabGrouper"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+T"
            },
            "description": "Save the current group of tabs."
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}