Spotifree
Removes audio ads on Spot1fy Web Player
Co je Spotifree?
Spotifree je rozšíření Chrome vyvinuté robertward2933, a jeho hlavní funkcí je „Removes audio ads on Spot1fy Web Player“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Spotifree
Stáhněte si soubory rozšíření Spotifree ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | lghglbigngooahpkaomlbiflhoahgnff |
Oficiální URL | https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff |
Popis | Removes audio ads on Spot1fy Web Player |
Velikost souboru | 49.97 KB |
Počet instalací | 544 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2021-06-07 |
Datum Vydání | 2021-06-07 |
Hodnocení | 5.00/5 Celkem 6 Hodnocení |
Vývojář | robertward2933 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |