Urban Lyrics
A Chrome extension to view lyrics.
O que é Urban Lyrics?
Urban Lyrics é uma extensão do Chrome desenvolvida por Leon Li, e sua principal característica é "A Chrome extension to view lyrics.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Urban Lyrics
Baixe arquivos de extensão Urban Lyrics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
URL Oficial | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
Descrição | A Chrome extension to view lyrics. |
Tamanho do Arquivo | 807 KB |
Contagem de Instalações | 392 |
Versão Atual | 2.2 |
Última Atualização | 2021-01-10 |
Data de Publicação | 2020-10-19 |
Classificação | 4.63/5 Total de 27 Avaliações |
Desenvolvedor | Leon Li |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://leonli.cc |
URL da Página de Ajuda | https://github.com/leon-li1/Urban-Lyrics |
Idiomas Suportados | 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" } |