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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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