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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |