Twitch Channel Points Gift Box Plugin
This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Twitch Channel Points Gift Box Plugin là gì?
Twitch Channel Points Gift Box Plugin là một tiện ích mở rộng Chrome được phát triển bởi Paul Purifoy, và tính năng chính của nó là "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".
Ả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 Channel Points Gift Box Plugin
Tải xuống các tệp mở rộng Twitch Channel Points Gift Box Plugin 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
This chrome extension is used for Twitch to automatically collect the channel point gift boxes which award extra channel points to spend. These channel points can be used to purchase rewards from the streamer's channel for your dedication to their stream. The extension tracks how many gift boxes it has collected and runs in the background so all you have to do is open a new tab and navigate to the streamer(s) that you want to collect from. Spawn as many tabs as you want and it will collect the channel point gift boxes from each stream you have started!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Channel Points Gift Box Plugin |
ID | hjbkfjkfeohfbmjcanfignhjmpgjlfba |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba |
Mô tả | This extension automatically clicks the channel point gift box for each tab that has a Twitch stream. |
Kích Thước Tệp | 366 KB |
Số Lần Cài Đặt | 189 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-05-07 |
Ngày Phát Hành | 2020-05-06 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Paul Purifoy |
[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", "manifest_version": 2, "name": "Twitch Channel Points Gift Box Plugin", "description": "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "poll.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Channel Points", "default_icon": "gift-box.png" }, "permissions": [ "tabs", "storage", "https:\/\/www.twitch.tv\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |