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
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
公式URL 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
Eメール leonli.developer@gmail.com
支払い方法 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"
}