Subscrybe

Manage subscriptions, and get alerted before next billing date.

Cos'è Subscrybe?

Subscrybe è un'estensione di Chrome sviluppata da https://subscrybe.app, e la sua funzione principale è "Manage subscriptions, and get alerted before next billing date.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Subscrybe

Scarica i file di estensione Subscrybe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
URL Ufficiale https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Descrizione Manage subscriptions, and get alerted before next billing date.
Dimensione del File 46.71 KB
Conteggio Installazioni 122
Versione Corrente 1.0.8
Ultimo Aggiornamento 2020-05-14
Data di Pubblicazione 2020-05-14
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://subscrybe.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://subscrybe.app
Lingue Supportate 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"
    }
}