geniuspot
Use Spotify miniplayer on genius.com instead of Apple Music
Что такое geniuspot?
geniuspot - это расширение Chrome, разработанное Noah Sandman, и его основная функция - "Use Spotify miniplayer on genius.com instead of Apple Music".
Снимки экрана расширения
Скачать файл CRX расширения geniuspot
Скачайте файлы расширений geniuspot в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Now works with both the old and new genius.com!
Replace the built-in Apple Music integration on the Genius lyrics website with the Spotify miniplayer. Because this does not require an Apple developer account, it is not 100% accurate with matching songs, but it is fairly good. It only runs on song pages which already have an Apple Music player on them. Основная информация о расширении
| Название | |
| ID | mcmfnafkklplolbfdhcgmocpmgmimpcl |
| Официальный URL | https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl |
| Описание | Use Spotify miniplayer on genius.com instead of Apple Music |
| Размер файла | 84.02 KB |
| Количество установок | 41 |
| Текущая Версия | 0.0.2 |
| Последнее Обновление | 2022-01-07 |
| Дата публикации | 2021-01-19 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Noah Sandman |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/nsandman/geniuspot |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "0.0.2",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.genius.com\/*"
],
"js": [
"scripts\/genius-inject.js"
],
"exclude_matches": [
"https:\/\/*.genius.com\/artists\/*",
"https:\/\/*.genius.com\/albums\/*",
"https:\/\/*.genius.com\/search",
"https:\/\/*.genius.com\/"
]
}
],
"background": {
"scripts": [
"scripts\/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages\/popup.html"
},
"permissions": [
"storage"
]
} | |