YouTube Genius
Get lyrics provided by Genius on YouTube videos
Co to jest YouTube Genius?
YouTube Genius to rozszerzenie Chrome opracowane przez https://youtube-genius.com, a jego główną funkcją jest „Get lyrics provided by Genius on YouTube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Genius
Pobierz pliki rozszerzeń YouTube Genius w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Genius |
ID | lmnandahjhfgfimknapgffcjojmnihjn |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn |
Opis | Get lyrics provided by Genius on YouTube videos |
Rozmiar pliku | 32.74 KB |
Liczba instalacji | 890 |
Aktualna Wersja | 1.3.5 |
Ostatnia Aktualizacja | 2022-08-27 |
Data Publikacji | 2019-02-14 |
Ocena | 3.89/5 Łącznie 19 Oceny |
Deweloper | https://youtube-genius.com |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } } |