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とは何ですか?
Twitch Channel Points Gift Box PluginはPaul Purifoyによって開発されたChromeの拡張機能で、その主な機能は「This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.」です。
拡張機能のスクリーンショット
Twitch Channel Points Gift Box Plugin拡張機能のCRXファイルをダウンロード
Twitch Channel Points Gift Box Plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | Twitch Channel Points Gift Box Plugin |
ID | hjbkfjkfeohfbmjcanfignhjmpgjlfba |
公式URL | https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba |
説明 | This extension automatically clicks the channel point gift box for each tab that has a Twitch stream. |
ファイルサイズ | 366 KB |
インストール数 | 189 |
現在のバージョン | 1.0 |
最終更新日 | 2020-05-07 |
公開日 | 2020-05-06 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | Paul Purifoy |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } } |