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