Spotifree
Removes audio ads on Spot1fy Web Player
Что такое Spotifree?
Spotifree - это расширение Chrome, разработанное robertward2933, и его основная функция - "Removes audio ads on Spot1fy Web Player".
Снимки экрана расширения
Скачать файл CRX расширения Spotifree
Скачайте файлы расширений Spotifree в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | lghglbigngooahpkaomlbiflhoahgnff |
Официальный URL | https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff |
Описание | Removes audio ads on Spot1fy Web Player |
Размер файла | 49.97 KB |
Количество установок | 544 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2021-06-07 |
Дата публикации | 2021-06-07 |
Рейтинг | 5.00/5 Всего 6 оценок |
Разработчик | robertward2933 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/*" ] } |