geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

Qu'est-ce que geniuspot ?

geniuspot est une extension Chrome développée par Noah Sandman, et sa fonction principale est "Use Spotify miniplayer on genius.com instead of Apple Music".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension geniuspot

Téléchargez les fichiers d'extension geniuspot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
URL Officiel https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Description Use Spotify miniplayer on genius.com instead of Apple Music
Taille du Fichier 84.02 KB
Nombre d'Installations 41
Version Actuelle 0.0.2
Dernière Mise à Jour 2022-01-07
Date de Publication 2021-01-19
Évaluation 5.00/5 Total 2 Évaluations
Développeur Noah Sandman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nsandman/geniuspot
Langues Prises en Charge 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"
    ]
}