Subscrybe

Manage subscriptions, and get alerted before next billing date.

Subscrybe là gì?

Subscrybe là một tiện ích mở rộng Chrome được phát triển bởi https://subscrybe.app, và tính năng chính của nó là "Manage subscriptions, and get alerted before next billing date.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Subscrybe

Tải xuống các tệp mở rộng Subscrybe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Subscrybe Subscrybe
ID cfcdaknjempfnjedghajbienfhgambom
URL Chính Thức https://chromewebstore.google.com/detail/subscrybe/cfcdaknjempfnjedghajbienfhgambom
Mô tả Manage subscriptions, and get alerted before next billing date.
Kích Thước Tệp 46.71 KB
Số Lần Cài Đặt 122
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2020-05-14
Ngày Phát Hành 2020-05-14
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://subscrybe.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://subscrybe.app
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}