geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

Cos'è geniuspot?

geniuspot è un'estensione di Chrome sviluppata da Noah Sandman, e la sua funzione principale è "Use Spotify miniplayer on genius.com instead of Apple Music".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione geniuspot

Scarica i file di estensione geniuspot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
URL Ufficiale https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Descrizione Use Spotify miniplayer on genius.com instead of Apple Music
Dimensione del File 84.02 KB
Conteggio Installazioni 41
Versione Corrente 0.0.2
Ultimo Aggiornamento 2022-01-07
Data di Pubblicazione 2021-01-19
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Noah Sandman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nsandman/geniuspot
Lingue Supportate 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"
    ]
}