Simple Session Manager

Save browser tabs and restore them later

Что такое Simple Session Manager?

Simple Session Manager - это расширение Chrome, разработанное Unknown, и его основная функция - "Save browser tabs and restore them later".

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

screenshot
screenshot

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

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

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

                        This is a simple browser session manager. You can save your current session and restore it later. Session information will be stored on you computer and you can save as many sessions as needed. It is also possible to save the state of only one (current) window.                    

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

Название Simple Session Manager Simple Session Manager
ID gcgejjbgcgnopbehanipbmppplgjhboa
Официальный URL https://chromewebstore.google.com/detail/simple-session-manager/gcgejjbgcgnopbehanipbmppplgjhboa
Описание Save browser tabs and restore them later
Размер файла 47.42 KB
Количество установок 33
Текущая Версия 1.0.3
Последнее Обновление 2020-01-30
Дата публикации 2020-01-30
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Session Manager",
    "short_name": "Session_Mngr",
    "description": "Save browser tabs and restore them later",
    "author": "ynyk",
    "version": "1.0.3",
    "icons": {
        "32": "icons\/tab-manager-32x32.png",
        "48": "icons\/tab-manager-48x48.png",
        "64": "icons\/tab-manager-64x64.png",
        "96": "icons\/tab-manager-96x96.png",
        "128": "icons\/tab-manager-128x128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "background\/env.js",
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/tab-manager-32x32.png",
        "default_title": "TabManager",
        "default_popup": "popup\/popup.html",
        "browser_style": false
    },
    "web_accessible_resources": [
        "img\/progress1.gif"
    ]
}