YouTube Genius

Get lyrics provided by Genius on YouTube videos

Was ist YouTube Genius?

YouTube Genius ist eine Chrome-Erweiterung, die von https://youtube-genius.com entwickelt wurde, und ihr Hauptmerkmal ist "Get lyrics provided by Genius on YouTube videos".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Genius-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Genius-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Genius YouTube Genius
ID lmnandahjhfgfimknapgffcjojmnihjn
Offizielle URL https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn
Beschreibung Get lyrics provided by Genius on YouTube videos
Dateigröße 32.74 KB
Installationsanzahl 890
Aktuelle Version 1.3.5
Letztes Update 2022-08-27
Veröffentlichungsdatum 2019-02-14
Bewertung 3.89/5 Insgesamt 19 Bewertungen
Entwickler https://youtube-genius.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}