geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

Was ist geniuspot?

geniuspot ist eine Chrome-Erweiterung, die von Noah Sandman entwickelt wurde, und ihr Hauptmerkmal ist "Use Spotify miniplayer on genius.com instead of Apple Music".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

geniuspot-Erweiterungs-CRX-Datei herunterladen

Laden Sie geniuspot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
Offizielle URL https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Beschreibung Use Spotify miniplayer on genius.com instead of Apple Music
Dateigröße 84.02 KB
Installationsanzahl 41
Aktuelle Version 0.0.2
Letztes Update 2022-01-07
Veröffentlichungsdatum 2021-01-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Noah Sandman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/nsandman/geniuspot
Unterstützte Sprachen 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"
    ]
}