Urban Lyrics
A Chrome extension to view lyrics.
Apa itu Urban Lyrics?
Urban Lyrics adalah ekstensi Chrome yang dikembangkan oleh Leon Li, dan fitur utamanya adalah "A Chrome extension to view lyrics.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Urban Lyrics
Unduh file ekstensi Urban Lyrics dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
URL Resmi | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
Deskripsi | A Chrome extension to view lyrics. |
Ukuran File | 807 KB |
Jumlah Instalasi | 392 |
Versi Saat Ini | 2.2 |
Terakhir Diperbarui | 2021-01-10 |
Tanggal Publikasi | 2020-10-19 |
Penilaian | 4.63/5 Total 27 Penilaian |
Pengembang | Leon Li |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://leonli.cc |
URL Halaman Bantuan | https://github.com/leon-li1/Urban-Lyrics |
Bahasa yang Didukung | 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" } |