Subscrybe

Manage subscriptions, and get alerted before next billing date.

ما هو Subscrybe؟

Subscrybe هو إضافة Chrome تم تطويرها بواسطة https://subscrybe.app، والميزة الرئيسية لها هي "Manage subscriptions, and get alerted before next billing date.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Subscrybe

قم بتنزيل ملفات الامتداد Subscrybe بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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