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是由Sylvain Giroux開發的Chrome擴展程式,該擴展的主要功能是“This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used”。
擴展截圖
下載Twitch Prime Subscription Reminder擴展crx文件
下載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 |
官方網址 | 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" ] } |