Twitch Auto Points Clicker & Point Tracker
Twitch point collector and point tracker.
Twitch Auto Points Clicker & Point Tracker란 무엇입니까?
Twitch Auto Points Clicker & Point Tracker은(는) svendy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitch point collector and point tracker."입니다.
확장 프로그램 스크린샷
Twitch Auto Points Clicker & Point Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
⭐ Features:
· Tracks the points collected by this extension and displays in the extension popup.
· Grabs points on multiple tabs.
· No crazy permissions.
· Lightweight
——————————————————————————————
⭐ Permissions explained:
· "storage" permission - extension stores your points to your sync profile
on your current browser. Also is used to display points in the extension
popup.
· "https://*.twitch.tv/*" host permissions - Permission to only run the extension at the
Twitch.tv domain.
——————————————————————————————
⭐ Source code:
· https://github.com/svn-dys/Auto-Channel-Points-Clicker-Point-Tracker
——————————————————————————————
⭐ · Thank you so much for downloading my extension! · ⭐ 확장 프로그램 기본 정보
| 이름 | |
| ID | afflghncaaiaebonpbplhpjhbkaciaim |
| 공식 URL | https://chromewebstore.google.com/detail/twitch-auto-points-clicke/afflghncaaiaebonpbplhpjhbkaciaim |
| 설명 | Twitch point collector and point tracker. |
| 파일 크기 | 78.96 KB |
| 설치 횟수 | 8,450 |
| 현재 버전 | 2.7 |
| 최근 업데이트 | 2023-03-06 |
| 출시 날짜 | 2020-07-14 |
| 평점 | 3.80/5 총 15 개의 평점 |
| 개발자 | svendy |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://www.twitch.tv/ |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch Auto Points Clicker & Point Tracker",
"version": "2.7",
"manifest_version": 3,
"description": "Twitch point collector and point tracker.",
"permissions": [
"storage"
],
"background": {
"service_worker": ".\/src\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitch.tv\/*"
],
"js": [
".\/src\/grab-chest.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_icon": ".\/icons\/main_icon.png",
"default_title": "Twitch Auto Channel Points Clicker & Point Tracker",
"default_popup": ".\/src\/popup.html"
},
"host_permissions": [
"https:\/\/*.twitch.tv\/*"
]
} | |