Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Auto Claim Twitch Channel Pointsとは何ですか?
Auto Claim Twitch Channel Pointsはmikeyaworskiによって開発されたChromeの拡張機能で、その主な機能は「Will automatically click the button for claiming channel points on Twitch.」です。
拡張機能のスクリーンショット
Auto Claim Twitch Channel Points拡張機能のCRXファイルをダウンロード
Auto Claim Twitch Channel Points拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A very simple script which runs in the background on Twitch pages. It automatically clicks the button to claim channel points on Twitch when it appears.
Source code: https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points 拡張機能の基本情報
| 名前 | |
| ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
| 公式URL | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
| 説明 | Will automatically click the button for claiming channel points on Twitch. |
| ファイルサイズ | 8.29 KB |
| インストール数 | 14,923 |
| 現在のバージョン | 2.0.0 |
| 最終更新日 | 2023-03-09 |
| 公開日 | 2020-05-01 |
| 評価 | 4.00/5 合計 16 レビュー |
| 開発者 | mikeyaworski |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://mikeyaworski.com/contact |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Claim Twitch Channel Points",
"description": "Will automatically click the button for claiming channel points on Twitch.",
"version": "2.0.0",
"manifest_version": 3,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitch.tv\/*"
],
"js": [
"main.js",
"interval.js",
"mutation-observer.js"
]
}
],
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
]
} | |