Urban Lyrics

A Chrome extension to view lyrics.

Urban Lyricsคืออะไร?

Urban Lyrics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Leon Li และคุณลักษณะหลักของมันคือ "A Chrome extension to view lyrics."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Urban Lyrics

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}