Subscrybe

Manage subscriptions, and get alerted before next billing date.

Что такое Subscrybe?

Subscrybe - это расширение Chrome, разработанное https://subscrybe.app, и его основная функция - "Manage subscriptions, and get alerted before next billing date.".

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

screenshot
screenshot
screenshot

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

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

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

                        Have you ever subscribed for a free trial, and then forgot to cancel? Or use a paid service for a few months, stopped using it and kept getting charged?

Subscrybe is here to solve that problem, while minimizing friction.

It works in your browser, so everytime you are on a subscription page, the extension pops up and lets you save that subscription in just 1 click.

Then once your subscription is nearing its billing date, we send you a text letting you know. So you never have to remember all the subscriptions you are subscribed to, their expiry dates etc.                    

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

Название Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
Официальный URL https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Описание Manage subscriptions, and get alerted before next billing date.
Размер файла 46.71 KB
Количество установок 122
Текущая Версия 1.0.8
Последнее Обновление 2020-05-14
Дата публикации 2020-05-14
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://subscrybe.app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://subscrybe.app
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subscrybe",
    "version": "1.0.8",
    "description": "Manage subscriptions, and get alerted before next billing date.",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/my.subscrybe.app\/*",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "bundle.js",
                "alter.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Subscrybe",
        "default_popup": "index.html"
    }
}