Water for Spotify
A cleaner UI for the Spotify web player.
Что такое Water for Spotify?
Water for Spotify - это расширение Chrome, разработанное BitwiseAndrea, и его основная функция - "A cleaner UI for the Spotify web player.".
Снимки экрана расширения
Скачать файл CRX расширения Water for Spotify
Скачайте файлы расширений Water for Spotify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Modifies the UI of the Spotify web player. See screenshots for a look at what this extension will provide you - in the side by side view, Water for Spotify is shown on the left. This extension is not made by Spotify and is not affiliated with Spotify. Some of the changes include: - Remove all instances of green call-to-action color usage - Remove paneling from playlist cards (and most instances of matte gray) on homepage - Center headings - Extend gradient background to cover more of the page - Support half screen mode Feel free to file bugs or requests on GitHub. More to come! ~BitwiseAndrea
Основная информация о расширении
Название | Water for Spotify |
ID | pehpkjkjaakpbgembhfbbmgdelfoeipf |
Официальный URL | https://chrome.google.com/webstore/detail/water-for-spotify/pehpkjkjaakpbgembhfbbmgdelfoeipf |
Описание | A cleaner UI for the Spotify web player. |
Размер файла | 75.02 KB |
Количество установок | 90 |
Текущая Версия | 0.1.2 |
Последнее Обновление | 2020-09-01 |
Дата публикации | 2019-11-18 |
Рейтинг | 2.80/5 Всего 5 оценок |
Разработчик | BitwiseAndrea |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/BitwiseAndrea/water-for-spotify |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Water for Spotify", "version": "0.1.2", "description": "A cleaner UI for the Spotify web player.", "icons": { "128": "\/images\/water.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "css": [ "\/styles.css" ], "js": [ "\/jquery-3.4.1.min.js", "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "*.css", "*.png", "*.cur" ] } |