YouTube Genius
Get lyrics provided by Genius on YouTube videos
ما هو YouTube Genius؟
YouTube Genius هو إضافة Chrome تم تطويرها بواسطة https://youtube-genius.com، والميزة الرئيسية لها هي "Get lyrics provided by Genius on YouTube videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Genius
قم بتنزيل ملفات الامتداد YouTube Genius بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to view and listen YouTube music videos alongside the lyrics. Lyrics are placed inside the YouTube page itself so you don't need to open a separate tab in order to read the lyrics of your favorite songs.
معلومات أساسية عن التمديد
الاسم | YouTube Genius |
ID | lmnandahjhfgfimknapgffcjojmnihjn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn |
الوصف | Get lyrics provided by Genius on YouTube videos |
حجم الملف | 32.74 KB |
عدد التثبيتات | 890 |
النسخة الحالية | 1.3.5 |
آخر تحديث | 2022-08-27 |
تاريخ النشر | 2019-02-14 |
تقييم | 3.89/5 مجموع تقييمات 19 |
المطور | https://youtube-genius.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Genius", "version": "1.3.5", "description": "Get lyrics provided by Genius on YouTube videos", "icons": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "main.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "app.js", "main.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ], "use_dynamic_url": true } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'" }, "action": { "default_icon": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" } } } |