geniuspot

Use Spotify miniplayer on genius.com instead of Apple Music

什麼是geniuspot?

geniuspot是由Noah Sandman開發的Chrome擴展程式,該擴展的主要功能是“Use Spotify miniplayer on genius.com instead of Apple Music”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載geniuspot擴展crx文件

下載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
官方網址 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"
    ]
}