Urban Lyrics
A Chrome extension to view lyrics.
What is Urban Lyrics?
Urban Lyrics is a Chrome extension developed by Leon Li, and its main feature is "A Chrome extension to view lyrics.".
Extension Screenshots
Download Urban Lyrics Extension CRX File
Download Urban Lyrics extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
Official URL | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
Description | A Chrome extension to view lyrics. |
File Size | 807 KB |
Installation Count | 392 |
Current Version | 2.2 |
Last Updated | 2021-01-10 |
Publish Date | 2020-10-19 |
Rating | 4.63/5 Total 27 Ratings |
Developer | Leon Li |
[email protected] | |
Payment Type | free |
Extension Website | https://leonli.cc |
Help Page URL | https://github.com/leon-li1/Urban-Lyrics |
Supported Languages | 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" } |