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文件
下載Twitch Auto Points Clicker & Point Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
⭐ 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 |
| 官方網址 | 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\/*"
]
} | |