Twitch - Auto Claim Points(忠誠點數)
Automatically claim the bonus channel points when the option pops up in twitch chat.
Twitch - Auto Claim Points(忠誠點數)란 무엇입니까?
Twitch - Auto Claim Points(忠誠點數)은(는) ITyouG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically claim the bonus channel points when the option pops up in twitch chat."입니다.
확장 프로그램 스크린샷
Twitch - Auto Claim Points(忠誠點數) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically claim the bonus channel points when the option pops up in twitch chat. This extension will redeem the bonus points from Twitch Channel Points that are given to viewers during live streams each 15 minutes. Source code:https://github.com/ITyouG/Auto-Claim-Twitch-Points
확장 프로그램 기본 정보
이름 | Twitch - Auto Claim Points(忠誠點數) |
ID | gjhoghnlnfbcacnbfagcbfdmjejebaje |
공식 URL | https://chromewebstore.google.com/detail/twitch-auto-claim-points%E5%BF%A0/gjhoghnlnfbcacnbfagcbfdmjejebaje |
설명 | Automatically claim the bonus channel points when the option pops up in twitch chat. |
파일 크기 | 6.07 KB |
설치 횟수 | 674 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-11-03 |
출시 날짜 | 2021-03-07 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | ITyouG |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch - Auto Claim Points(\u5fe0\u8aa0\u9ede\u6578)", "description": "Automatically claim the bonus channel points when the option pops up in twitch chat.", "version": "1.0.0", "manifest_version": 2, "permissions": [ "http:\/\/www.twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "injected.js" ], "all_frames": true } ], "icons": { "32": "icon_32.png", "48": "icon_48.png", "64": "icon_64.png" } } |