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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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" ] } |