Simple Suspender

Suspend / unsuspend a tab, with minimal privacy concerns by design

Что такое Simple Suspender?

Simple Suspender - это расширение Chrome, разработанное VehpuS, и его основная функция - "Suspend / unsuspend a tab, with minimal privacy concerns by design".

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

screenshot

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

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

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

                        A cross-browser extension to suspend inactive / unused tabs by "hiding" them behind a static, generic browser error page. Basically to suspend https://moshe-gr.com, it will be redirected to http://localhost:0/#https://www.moshe-gr.com (try it ;) ).

If you want to install the extension from source code (to ensure no possible abuse) - follow the instructions in the Github repo: https://github.com/VehpuS/simple-cross-browser-suspender.                    

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

Название Simple Suspender Simple Suspender
ID foejeakhjndjjodhmcieiihikcdpciak
Официальный URL https://chromewebstore.google.com/detail/simple-suspender/foejeakhjndjjodhmcieiihikcdpciak
Описание Suspend / unsuspend a tab, with minimal privacy concerns by design
Размер файла 93.4 KB
Количество установок 38
Текущая Версия 1.0
Последнее Обновление 2021-07-25
Дата публикации 2021-07-25
Разработчик VehpuS
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/VehpuS/simple-cross-browser-suspender/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Suspender",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Suspend \/ unsuspend a tab, with minimal privacy concerns by design",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png"
        },
        "default_title": "Suspend"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ]
}