Spotifree

Removes audio ads on Spot1fy Web Player

Was ist Spotifree?

Spotifree ist eine Chrome-Erweiterung, die von robertward2933 entwickelt wurde, und ihr Hauptmerkmal ist "Removes audio ads on Spot1fy Web Player".

Erweiterungsscreenshots

screenshot

Spotifree-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spotifree-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Via spotifree, you can have a completely ad-free version of spotify. It is completely open source and free.

Features:
-No need to pay for a premium account as ads are skipped without you taking action
-You will not feel anything while listening to your music, the music will not be interrupted.
-The time you spend listening to ads is up to you.
-You save internet traffic because you don't listen to ads.                    

Grundlegende Informationen zur Erweiterung

Name Spotifree Spotifree
ID lghglbigngooahpkaomlbiflhoahgnff
Offizielle URL https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff
Beschreibung Removes audio ads on Spot1fy Web Player
Dateigröße 49.97 KB
Installationsanzahl 544
Aktuelle Version 1.0.1
Letztes Update 2021-06-07
Veröffentlichungsdatum 2021-06-07
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler robertward2933
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotifree",
    "short_name": "Spotifree ads blocker",
    "description": "Removes audio ads on Spot1fy Web Player",
    "version": "1.0.1",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/open.spotify.com\/*"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "lib\/sweetalert.min.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "injected\/*",
        "lib\/*"
    ]
}