geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

¿Qué es geniuspot?

geniuspot es una extensión de Chrome desarrollada por Noah Sandman, y su función principal es "Use Spotify miniplayer on genius.com instead of Apple Music".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión geniuspot

Descarga archivos de extensión geniuspot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
URL Oficial https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Descripción Use Spotify miniplayer on genius.com instead of Apple Music
Tamaño del Archivo 84.02 KB
Cantidad de Instalaciones 41
Versión Actual 0.0.2
Última Actualización 2022-01-07
Fecha de Publicación 2021-01-19
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Noah Sandman
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/nsandman/geniuspot
Idiomas Soportados 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"
    ]
}