Twitch MuteAds
Mute Ads on Twitch
Twitch MuteAdsとは何ですか?
Twitch MuteAdsはspddlによって開発されたChromeの拡張機能で、その主な機能は「Mute Ads on Twitch」です。
拡張機能のスクリーンショット
Twitch MuteAds拡張機能のCRXファイルをダウンロード
Twitch MuteAds拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Mutes advertisements on Twitch and reactivates them after the advertisement. 拡張機能の基本情報
| 名前 | |
| ID | jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| 公式URL | https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| 説明 | Mute Ads on Twitch |
| ファイルサイズ | 10.13 KB |
| インストール数 | 44 |
| 現在のバージョン | 0.0.3 |
| 最終更新日 | 2021-01-26 |
| 公開日 | 2020-12-12 |
| 評価 | 4.00/5 合計 2 レビュー |
| 開発者 | spddl |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/spddl/Twitch-MuteAds |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch MuteAds",
"description": "Mute Ads on Twitch",
"version": "0.0.3",
"icons": {
"48": "volume_off_googred500_48x48.png",
"128": "volume_off_googred500_108x108.png",
"256": "volume_off_googred500_144x144.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs"
],
"host_permissions": [
"*:\/\/*.twitch.tv\/*"
],
"action": {
"default_title": "Twitch MuteAds",
"default_icon": {
"48": "volume_off_googred500_48x48.png",
"128": "volume_off_googred500_108x108.png",
"256": "volume_off_googred500_144x144.png"
}
}
} | |