Just Unsubscribe

Upgrade Gmail. Install the missing button to just unsubscribe.

Что такое Just Unsubscribe?

Just Unsubscribe - это расширение Chrome, разработанное https://justunsubscribe.com, и его основная функция - "Upgrade Gmail. Install the missing button to just unsubscribe.".

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

screenshot

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

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

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

                        Stop wasting your time hunting for unsubscribe links. Install this extension to add the missing unsubscribe button to Gmail. Click the button and we’ll find the fastest way for you to opt out. Oh, and your emails never leave Gmail – secure and private all the way.                    

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

Название Just Unsubscribe Just Unsubscribe
ID kcciakdnngbpmkkegddmimdejdekiomm
Официальный URL https://chromewebstore.google.com/detail/just-unsubscribe/kcciakdnngbpmkkegddmimdejdekiomm
Описание Upgrade Gmail. Install the missing button to just unsubscribe.
Размер файла 107 KB
Количество установок 229
Текущая Версия 1.0.0
Последнее Обновление 2021-05-26
Дата публикации 2021-05-25
Рейтинг 4.00/5 Всего 2 оценок
Разработчик https://justunsubscribe.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://justunsubscribe.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "name": "Just Unsubscribe",
    "description": "Upgrade Gmail. Install the missing button to just unsubscribe.",
    "permissions": [
        "https:\/\/mail.google.com\/",
        "http:\/\/localhost:5000\/",
        "https:\/\/justunsubscribe.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "loader.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        "icons\/unsubscribe.svg"
    ],
    "manifest_version": 2
}