Twitch Auto Points Clicker & Point Tracker
Twitch point collector and point tracker.
Twitch Auto Points Clicker & Point Tracker là gì?
Twitch Auto Points Clicker & Point Tracker là một tiện ích mở rộng Chrome được phát triển bởi svendy, và tính năng chính của nó là "Twitch point collector and point tracker.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch Auto Points Clicker & Point Tracker
Tải xuống các tệp mở rộng Twitch Auto Points Clicker & Point Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
⭐ 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! · ⭐
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Auto Points Clicker & Point Tracker |
ID | afflghncaaiaebonpbplhpjhbkaciaim |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-auto-points-clicke/afflghncaaiaebonpbplhpjhbkaciaim |
Mô tả | Twitch point collector and point tracker. |
Kích Thước Tệp | 78.96 KB |
Số Lần Cài Đặt | 8,450 |
Phiên Bản Hiện Tại | 2.7 |
Cập Nhật Lần Cuối | 2023-03-06 |
Ngày Phát Hành | 2020-07-14 |
Đánh Giá | 3.80/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | svendy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.twitch.tv/ |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |