Subscrybe

Manage subscriptions, and get alerted before next billing date.

什么是Subscrybe?

Subscrybe是由https://subscrybe.app开发的Chrome扩展程序,该扩展的主要功能是“Manage subscriptions, and get alerted before next billing date.”。

扩展截图

screenshot
screenshot
screenshot

下载Subscrybe扩展crx文件

下载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"
    }
}