Urban Lyrics

A Chrome extension to view lyrics.

什麼是Urban Lyrics?

Urban Lyrics是由Leon Li開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to view lyrics.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Urban Lyrics擴展crx文件

下載Urban Lyrics擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        An extension that provides its user with lyrics to a song with the click of a button. It also has integrated search boxes for word definitions by Urban Dictionary and also for custom song lookups. At the end of the song lyrics is also a Genius link for the current song displayed.                    

擴展基本資訊

名稱 Urban Lyrics Urban Lyrics
ID akahkofaophahlgdibcfelkfnamedong
官方網址 https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong
簡介 A Chrome extension to view lyrics.
檔案大小 807 KB
安裝次數 392
目前版本 2.2
更新時間 2021-01-10
上架時間 2020-10-19
評分 4.63/5 共 27 次評分
開發者 Leon Li
電子郵箱 [email protected]
付費類型 free
擴展官網 https://leonli.cc
說明頁面URL https://github.com/leon-li1/Urban-Lyrics
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Urban Lyrics",
    "version": "2.2",
    "manifest_version": 2,
    "description": "A Chrome extension to view lyrics.",
    "icons": {
        "16": "icons\/UrbanLyrics-16.png",
        "48": "icons\/UrbanLyrics-48.png",
        "128": "icons\/UrbanLyrics-128.png"
    },
    "browser_action": {
        "default_title": "Urban Lyrics",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_security_policy": "default-src 'self'; connect-src *; font-src *; style-src-elem * 'unsafe-inline'; script-src-elem * ; style-src 'unsafe-inline'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "incognito": "not_allowed"
}