geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

O que é geniuspot?

geniuspot é uma extensão do Chrome desenvolvida por Noah Sandman, e sua principal característica é "Use Spotify miniplayer on genius.com instead of Apple Music".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão geniuspot

Baixe arquivos de extensão geniuspot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
URL Oficial https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Descrição Use Spotify miniplayer on genius.com instead of Apple Music
Tamanho do Arquivo 84.02 KB
Contagem de Instalações 41
Versão Atual 0.0.2
Última Atualização 2022-01-07
Data de Publicação 2021-01-19
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Noah Sandman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nsandman/geniuspot
Idiomas Suportados 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"
    ]
}