Twitch Prime Subscription Reminder
This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
Apa itu Twitch Prime Subscription Reminder?
Twitch Prime Subscription Reminder adalah ekstensi Chrome yang dikembangkan oleh Sylvain Giroux, dan fitur utamanya adalah "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Twitch Prime Subscription Reminder
Unduh file ekstensi Twitch Prime Subscription Reminder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.
Informasi Dasar Ekstensi
Nama | Twitch Prime Subscription Reminder |
ID | lkojkjhbgnhoepnajfllnjffcheahpco |
URL Resmi | https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco |
Deskripsi | This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used |
Ukuran File | 15.99 KB |
Jumlah Instalasi | 239 |
Versi Saat Ini | 1.0.5 |
Terakhir Diperbarui | 2022-09-15 |
Tanggal Publikasi | 2019-03-01 |
Penilaian | 3.73/5 Total 11 Penilaian |
Pengembang | Sylvain Giroux |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/spoji/Twitch-Prime-Subscription-Reminder |
URL Halaman Bantuan | https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues |
Bahasa yang Didukung | 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" ] } |