Subscrybe

Manage subscriptions, and get alerted before next billing date.

¿Qué es Subscrybe?

Subscrybe es una extensión de Chrome desarrollada por https://subscrybe.app, y su función principal es "Manage subscriptions, and get alerted before next billing date.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Subscrybe

Descarga archivos de extensión Subscrybe en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
URL Oficial https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Descripción Manage subscriptions, and get alerted before next billing date.
Tamaño del Archivo 46.71 KB
Cantidad de Instalaciones 122
Versión Actual 1.0.8
Última Actualización 2020-05-14
Fecha de Publicación 2020-05-14
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://subscrybe.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://subscrybe.app
Idiomas Soportados 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"
    }
}