Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Twitch Channel Points Auto-Clickerとは何ですか?
Twitch Channel Points Auto-ClickerはFrancis Rheeによって開発されたChromeの拡張機能で、その主な機能は「Automatically claims Twitch channel watch rewards.」です。
拡張機能のスクリーンショット
Twitch Channel Points Auto-Clicker拡張機能のCRXファイルをダウンロード
Twitch Channel Points Auto-Clicker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.
拡張機能の基本情報
名前 | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
公式URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
説明 | Automatically claims Twitch channel watch rewards. |
ファイルサイズ | 7.34 KB |
インストール数 | 948 |
現在のバージョン | 1.0 |
最終更新日 | 2020-11-11 |
公開日 | 2020-11-11 |
評価 | 4.25/5 合計 4 レビュー |
開発者 | Francis Rhee |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Channel Points Auto-Clicker", "version": "1.0", "description": "Automatically claims Twitch channel watch rewards.", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |