YourTab

Keeping Tabs on them Tabs

Что такое YourTab?

YourTab - это расширение Chrome, разработанное zweicoder, и его основная функция - "Keeping Tabs on them Tabs".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Too many Tabs? Put them on YourTab! 

YourTab allows you to save all OR select Tabs in a click! Save RAM and save yourself from headaches from having too many tabs.

Feedback and Suggestions are welcome! Interested to help? Fork it on Github at https://github.com/zweicoder/YourTab !                    

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

Название YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
Официальный URL https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
Описание Keeping Tabs on them Tabs
Размер файла 115 KB
Количество установок 20
Текущая Версия 0.9.0
Последнее Обновление 2015-08-13
Дата публикации 2015-08-13
Рейтинг 5.00/5 Всего 4 оценок
Разработчик zweicoder
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YourTab",
    "version": "0.9.0",
    "description": "Keeping Tabs on them Tabs",
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "YourTab",
        "default_icon": "icons\/icon48.png"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "commands": {
        "save-current": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Save current tab."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/modal\/modal.js",
                "assets\/jquery.min.js",
                "assets\/mithril.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}