Twitch Auto Points
Automatic twitch channel points collection
Twitch Auto Points란 무엇입니까?
Twitch Auto Points은(는) danv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic twitch channel points collection"입니다.
확장 프로그램 스크린샷
Twitch Auto Points 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically finds the bonus point button on the website and clicks it for you. - NEW: the extension icon now shows the amount of points it collected for the channel you opened in your tab - Works in multiple tabs and windows at the same time. - Optimised for performance - Only works on twitch websites and gets automatically disabled on other websites - No data collection whatsoever - Works in moderator view - Updated to work with the new twitch UI
확장 프로그램 기본 정보
이름 | Twitch Auto Points |
ID | epdcapclkanflhcnialagecbkbpkbcbi |
공식 URL | https://chromewebstore.google.com/detail/twitch-auto-points/epdcapclkanflhcnialagecbkbpkbcbi |
설명 | Automatic twitch channel points collection |
파일 크기 | 31.04 KB |
설치 횟수 | 1,277 |
현재 버전 | 1.2.5 |
최근 업데이트 | 2021-05-30 |
출시 날짜 | 2020-07-04 |
평점 | 4.20/5 총 5 개의 평점 |
개발자 | danv |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Spring3/twitch-auto-points |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "danv", "name": "Twitch Auto Points", "version": "1.2.5", "homepage_url": "https:\/\/github.com\/Spring3\/twitch-auto-points", "description": "Automatic twitch channel points collection", "permissions": [ "activeTab", "storage", "tabs" ], "content_security_policy": "default-src 'self'", "background": { "scripts": [ "background\/browserAction.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icons\/icon-color-16.png", "32": "icons\/icon-color-32.png", "48": "icons\/icon-color-48.png", "64": "icons\/icon-color-64.png", "96": "icons\/icon-color-96.png", "128": "icons\/icon-color-128.png", "256": "icons\/icon-color-256.png" } }, "content_scripts": [ { "js": [ "contentScripts\/worker.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ], "match_about_blank": false, "run_at": "document_idle" } ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png" } } |