Spotifree

Removes audio ads on Spot1fy Web Player

Wat is Spotifree?

Spotifree is een Chrome-extensie ontwikkeld door robertward2933, en de belangrijkste functie is "Removes audio ads on Spot1fy Web Player".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Spotifree

Download Spotifree-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

                        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.                    

Basisinformatie over de Extensie

Naam Spotifree Spotifree
ID lghglbigngooahpkaomlbiflhoahgnff
Officiële URL https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff
Beschrijving Removes audio ads on Spot1fy Web Player
Bestandsgrootte 49.97 KB
Aantal Installaties 544
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-06-07
Publicatiedatum 2021-06-07
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar robertward2933
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}