Twitch Prime Subscription Reminder
This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
ما هو Twitch Prime Subscription Reminder؟
Twitch Prime Subscription Reminder هو إضافة Chrome تم تطويرها بواسطة Sylvain Giroux، والميزة الرئيسية لها هي "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitch Prime Subscription Reminder
قم بتنزيل ملفات الامتداد Twitch Prime Subscription Reminder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.
معلومات أساسية عن التمديد
الاسم | Twitch Prime Subscription Reminder |
ID | lkojkjhbgnhoepnajfllnjffcheahpco |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco |
الوصف | This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used |
حجم الملف | 15.99 KB |
عدد التثبيتات | 239 |
النسخة الحالية | 1.0.5 |
آخر تحديث | 2022-09-15 |
تاريخ النشر | 2019-03-01 |
تقييم | 3.73/5 مجموع تقييمات 11 |
المطور | Sylvain Giroux |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/spoji/Twitch-Prime-Subscription-Reminder |
عنوان صفحة المساعدة | https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Prime Subscription Reminder", "description": "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used", "version": "1.0.5", "icons": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "check_subscription.js" ] } ], "browser_action": { "default_icon": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "Twitch Prime Subscription Reminder" }, "permissions": [ "tabs" ] } |