YouTube Genius
Get lyrics provided by Genius on YouTube videos
Vad är YouTube Genius?
YouTube Genius är en Chrome-tillägg utvecklad av https://youtube-genius.com, och dess huvudfunktion är "Get lyrics provided by Genius on YouTube videos".
Tilläggsskärmbilder
Ladda ner YouTube Genius-förlängningens CRX-fil
Ladda ner YouTube Genius-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | YouTube Genius |
ID | lmnandahjhfgfimknapgffcjojmnihjn |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn |
Beskrivning | Get lyrics provided by Genius on YouTube videos |
Filstorlek | 32.74 KB |
Antal Installationer | 890 |
Aktuell Version | 1.3.5 |
Senast Uppdaterad | 2022-08-27 |
Publiceringsdatum | 2019-02-14 |
Betyg | 3.89/5 Totalt 19 Betyg |
Utvecklare | https://youtube-genius.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } } |