Urban Lyrics
A Chrome extension to view lyrics.
ما هو Urban Lyrics؟
Urban Lyrics هو إضافة Chrome تم تطويرها بواسطة Leon Li، والميزة الرئيسية لها هي "A Chrome extension to view lyrics.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Urban Lyrics
قم بتنزيل ملفات الامتداد Urban Lyrics بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
الوصف | A Chrome extension to view lyrics. |
حجم الملف | 807 KB |
عدد التثبيتات | 392 |
النسخة الحالية | 2.2 |
آخر تحديث | 2021-01-10 |
تاريخ النشر | 2020-10-19 |
تقييم | 4.63/5 مجموع تقييمات 27 |
المطور | Leon Li |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://leonli.cc |
عنوان صفحة المساعدة | https://github.com/leon-li1/Urban-Lyrics |
اللغات المدعومة | 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" } |