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 |
Eメール | [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" ] } |