Urban Lyrics
A Chrome extension to view lyrics.
Qu'est-ce que Urban Lyrics ?
Urban Lyrics est une extension Chrome développée par Leon Li, et sa fonction principale est "A Chrome extension to view lyrics.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Urban Lyrics
Téléchargez les fichiers d'extension Urban Lyrics au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
URL Officiel | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
Description | A Chrome extension to view lyrics. |
Taille du Fichier | 807 KB |
Nombre d'Installations | 392 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2021-01-10 |
Date de Publication | 2020-10-19 |
Évaluation | 4.63/5 Total 27 Évaluations |
Développeur | Leon Li |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://leonli.cc |
URL de la Page d'Aide | https://github.com/leon-li1/Urban-Lyrics |
Langues Prises en Charge | 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" } |