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 |
| 公式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 |
| Eメール | [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\/*"
]
} | |