Urban Lyrics
A Chrome extension to view lyrics.
Cos'è Urban Lyrics?
Urban Lyrics è un'estensione di Chrome sviluppata da Leon Li, e la sua funzione principale è "A Chrome extension to view lyrics.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Urban Lyrics
Scarica i file di estensione Urban Lyrics in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | akahkofaophahlgdibcfelkfnamedong |
| URL Ufficiale | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
| Descrizione | A Chrome extension to view lyrics. |
| Dimensione del File | 807 KB |
| Conteggio Installazioni | 392 |
| Versione Corrente | 2.2 |
| Ultimo Aggiornamento | 2021-01-10 |
| Data di Pubblicazione | 2020-10-19 |
| Valutazione | 4.63/5 Totale 27 Valutazioni |
| Sviluppatore | Leon Li |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://leonli.cc |
| URL della Pagina di Aiuto | https://github.com/leon-li1/Urban-Lyrics |
| Lingue Supportate | 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"
} | |