geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

geniuspot क्या है?

geniuspot Noah Sandman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use Spotify miniplayer on genius.com instead of Apple Music"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में geniuspot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}