Spotify Ad Auto-Muter
Automatically mute audio ads.
Wat is Spotify Ad Auto-Muter?
Spotify Ad Auto-Muter is een Chrome-extensie ontwikkeld door Zion Developers, en de belangrijkste functie is "Automatically mute audio ads.".
Extensie Screenshots
Download het CRX-bestand van de extensie Spotify Ad Auto-Muter
Download Spotify Ad Auto-Muter-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
This is NOT an Ad Blocker, It mute ads. Support Spotify by disabling AdBlock / uBlock on open.spotify.com and use this extension to automatically mute audio ads. Feature: Automatically mute audio ads (Changeable on Options). Feature: Disable / Enable the extension by pressing F2 (Changeable on Options). More features to be developed soon. This is not a Spotify official extension. Open Source: https://github.com/ziondevelopers/spotify-ad-auto-muter License: https://creativecommons.org/licenses/by-nc-sa/4.0/
Basisinformatie over de Extensie
Naam | Spotify Ad Auto-Muter |
ID | hhlhelmnhcmphakjipgkbcjkfpkdnaag |
Officiële URL | https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag |
Beschrijving | Automatically mute audio ads. |
Bestandsgrootte | 100 KB |
Aantal Installaties | 579 |
Huidige Versie | 0.1.10 |
Laatst Bijgewerkt | 2024-01-07 |
Publicatiedatum | 2022-10-25 |
Beoordeling | 3.67/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Zion Developers |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ziondevelopers/spotify-ad-auto-muter |
Help Pagina-URL | https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "exclude_globs": [], "include_globs": [ "*open.spotify.com*" ], "css": [], "js": [ "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery.hotkeys.js" ], "matches": [ "*:\/\/open.spotify.com\/*" ], "run_at": "document_start" } ], "description": "Automatically mute audio ads.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 3, "name": "Spotify Ad Auto-Muter", "short_name": "Spotify Ad Auto-Muter", "options_page": "options.html", "permissions": [ "storage" ], "version": "0.1.10", "web_accessible_resources": [ { "matches": [ "*:\/\/open.spotify.com\/*" ], "resources": [ "icons\/icon.png", "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery-3.7.1.min.map", "includes\/jquery.hotkeys.js" ] } ] } |