Subscrybe

Manage subscriptions, and get alerted before next billing date.

Vad är Subscrybe?

Subscrybe är en Chrome-tillägg utvecklad av https://subscrybe.app, och dess huvudfunktion är "Manage subscriptions, and get alerted before next billing date.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Subscrybe-förlängningens CRX-fil

Ladda ner Subscrybe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
Officiell webbadress https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Beskrivning Manage subscriptions, and get alerted before next billing date.
Filstorlek 46.71 KB
Antal Installationer 122
Aktuell Version 1.0.8
Senast Uppdaterad 2020-05-14
Publiceringsdatum 2020-05-14
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://subscrybe.app
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://subscrybe.app
Stödda Språk 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"
    }
}