Twitch MuteAds
Mute Ads on Twitch
Wat is Twitch MuteAds?
Twitch MuteAds is een Chrome-extensie ontwikkeld door spddl, en de belangrijkste functie is "Mute Ads on Twitch".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch MuteAds
Download Twitch MuteAds-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Mutes advertisements on Twitch and reactivates them after the advertisement. Basisinformatie over de Extensie
| Naam | |
| ID | jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| Officiële URL | https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| Beschrijving | Mute Ads on Twitch |
| Bestandsgrootte | 10.13 KB |
| Aantal Installaties | 44 |
| Huidige Versie | 0.0.3 |
| Laatst Bijgewerkt | 2021-01-26 |
| Publicatiedatum | 2020-12-12 |
| Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | spddl |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/spddl/Twitch-MuteAds |
| Ondersteunde Talen | 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"
}
}
} | |