Subscrybe

Manage subscriptions, and get alerted before next billing date.

O que é Subscrybe?

Subscrybe é uma extensão do Chrome desenvolvida por https://subscrybe.app, e sua principal característica é "Manage subscriptions, and get alerted before next billing date.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Subscrybe

Baixe arquivos de extensão Subscrybe no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
URL Oficial https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Descrição Manage subscriptions, and get alerted before next billing date.
Tamanho do Arquivo 46.71 KB
Contagem de Instalações 122
Versão Atual 1.0.8
Última Atualização 2020-05-14
Data de Publicação 2020-05-14
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://subscrybe.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://subscrybe.app
Idiomas Suportados 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"
    }
}