Session Manager

A simple Session manager that syncs across your PCs

Что такое Session Manager?

Session Manager - это расширение Chrome, разработанное https://rjgtav.wordpress.com, и его основная функция - "A simple Session manager that syncs across your PCs".

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

screenshot
screenshot
screenshot

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

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

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

                        With Session Manager you'll be able to group and save your tabs into multiple sessions.
This not only improves your productivity by reducing the clutter, but also serves as an automatic backup in case of a system crash, all while also saving some much needed resources for your other programs.

Features:
+ Up to 120 tabs per session
+ Up to 30 sessions
+ Automatically syncs between all of your PCs*

*Make sure to sign in with your browser vendor's account (e.g Google if you're using Chrome, Microsoft if you're using Edge, etc.)

This extension is open-source and available at https://github.com/rjgtav/chrome-session-manager                    

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

Название Session Manager Session Manager
ID aflhdjdhfogmjdakdkbhiacemdkkipkp
Официальный URL https://chromewebstore.google.com/detail/session-manager/aflhdjdhfogmjdakdkbhiacemdkkipkp
Описание A simple Session manager that syncs across your PCs
Размер файла 2.09 MB
Количество установок 283
Текущая Версия 1.2.2
Последнее Обновление 2020-04-02
Дата публикации 2020-03-27
Рейтинг 2.33/5 Всего 3 оценок
Разработчик https://rjgtav.wordpress.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Session Manager",
    "version": "1.2.2",
    "description": "A simple Session manager that syncs across your PCs",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js",
            "runtime.js",
            "vendor.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "assets\/logo16.png",
        "48": "assets\/logo48.png",
        "128": "assets\/logo128.png"
    },
    "permissions": [
        "alarms",
        "storage",
        "tabs"
    ]
}