geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

Τι είναι το geniuspot;

Το geniuspot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Noah Sandman, και η κύρια λειτουργία του είναι "Use Spotify miniplayer on genius.com instead of Apple Music".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης geniuspot

Λήψη αρχείων επέκτασης geniuspot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα geniuspot geniuspot
ID mcmfnafkklplolbfdhcgmocpmgmimpcl
Επίσημο URL https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl
Περιγραφή Use Spotify miniplayer on genius.com instead of Apple Music
Μέγεθος Αρχείου 84.02 KB
Αριθμός Εγκαταστάσεων 41
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2022-01-07
Ημερομηνία Δημοσίευσης 2021-01-19
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Noah Sandman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/nsandman/geniuspot
Υποστηριζόμενες Γλώσσες 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"
    ]
}