Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
Twitch Channel Points Autoclickerとは何ですか?
Twitch Channel Points Autoclickerはxinitrcによって開発されたChromeの拡張機能で、その主な機能は「Automatically claims 'Channel Points' on Twitch」です。
拡張機能のスクリーンショット
Twitch Channel Points Autoclicker拡張機能のCRXファイルをダウンロード
Twitch Channel Points Autoclicker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automatically claims 'Channel Points' on Twitch for the channel you are watching.
LITE version that requires no permissions is also available: https://chrome.google.com/webstore/detail/fapndfdannkgofolmaihpbigbolcobek/
Also available for Mozilla Firefox: https://addons.mozilla.org/en-GB/firefox/addon/twitch-points-autoclicker/
What permissions are used and why: https://xinitrc.ca/autoclicker-permissions/
Note: May not be compatible with some twitch design changing extensions.
Available on GitHub: https://github.com/xinitrc-dev/twitch-points-autoclicker 拡張機能の基本情報
| 名前 | |
| ID | pbeamibpehihpjljabhnchghlbneiane |
| 公式URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
| 説明 | Automatically claims 'Channel Points' on Twitch |
| ファイルサイズ | 110 KB |
| インストール数 | 140,516 |
| 現在のバージョン | 1.6.1 |
| 最終更新日 | 2021-01-14 |
| 公開日 | 2020-05-05 |
| 評価 | 3.88/5 合計 134 レビュー |
| 開発者 | xinitrc |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://xinitrc.ca/autoclicker-permissions |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitch Channel Points Autoclicker",
"description": "Automatically claims 'Channel Points' on Twitch",
"version": "1.6.1",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"arrive-2.4.1.min.js",
"twitch-clicker.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"*:\/\/*.twitch.tv\/*",
"tabs",
"storage",
"notifications",
"webNavigation"
],
"web_accessible_resources": [
"arrive-2.4.1.min.js",
"twitch-clicker.js"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_action": {
"default_title": "Channel Points Autoclicker",
"default_icon": {
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
}
} | |