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 |
官方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" ] } |