Twitch - Auto Claim Points(忠誠點數)
Automatically claim the bonus channel points when the option pops up in twitch chat.
Twitch - Auto Claim Points(忠誠點數) là gì?
Twitch - Auto Claim Points(忠誠點數) là một tiện ích mở rộng Chrome được phát triển bởi ITyouG, và tính năng chính của nó là "Automatically claim the bonus channel points when the option pops up in twitch chat.".
Ả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 Claim Points(忠誠點數)
Tải xuống các tệp mở rộng Twitch - Auto Claim Points(忠誠點數) 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
Automatically claim the bonus channel points when the option pops up in twitch chat. This extension will redeem the bonus points from Twitch Channel Points that are given to viewers during live streams each 15 minutes. Source code:https://github.com/ITyouG/Auto-Claim-Twitch-Points
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch - Auto Claim Points(忠誠點數) |
ID | gjhoghnlnfbcacnbfagcbfdmjejebaje |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-auto-claim-points%E5%BF%A0/gjhoghnlnfbcacnbfagcbfdmjejebaje |
Mô tả | Automatically claim the bonus channel points when the option pops up in twitch chat. |
Kích Thước Tệp | 6.07 KB |
Số Lần Cài Đặt | 674 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-11-03 |
Ngày Phát Hành | 2021-03-07 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ITyouG |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch - Auto Claim Points(\u5fe0\u8aa0\u9ede\u6578)", "description": "Automatically claim the bonus channel points when the option pops up in twitch chat.", "version": "1.0.0", "manifest_version": 2, "permissions": [ "http:\/\/www.twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "injected.js" ], "all_frames": true } ], "icons": { "32": "icon_32.png", "48": "icon_48.png", "64": "icon_64.png" } } |