Genius Lyrics for YouTube Music
Turn YouTube Music into a lyrical genius!
Τι είναι το Genius Lyrics for YouTube Music;
Το Genius Lyrics for YouTube Music είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jakob, και η κύρια λειτουργία του είναι "Turn YouTube Music into a lyrical genius!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Genius Lyrics for YouTube Music
Λήψη αρχείων επέκτασης Genius Lyrics for YouTube Music σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Are you tired of singing the wrong lyrics to your favorite songs on YouTube Music? Fear not! With this extension, you can say goodbye to those embarrassing moments when you've been belting out the wrong lyrics at the top of your lungs. Say hello to accurate lyrics, complete with their meanings, from the one and only Genius. No more confusion or frustration, just pure musical bliss.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Genius Lyrics for YouTube Music |
ID | gefmkfhdhnlmpeedemlangcjljpfphll |
Επίσημο URL | https://chromewebstore.google.com/detail/genius-lyrics-for-youtube/gefmkfhdhnlmpeedemlangcjljpfphll |
Περιγραφή | Turn YouTube Music into a lyrical genius! |
Μέγεθος Αρχείου | 24.56 KB |
Αριθμός Εγκαταστάσεων | 363 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2023-03-09 |
Ημερομηνία Δημοσίευσης | 2023-03-07 |
Αξιολόγηση | 4.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Jakob |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Genius Lyrics for YouTube Music", "version": "1.0.1", "description": "Turn YouTube Music into a lyrical genius!", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/music.youtube.com\/*" ], "js": [ "music_content.js" ], "css": [ "music_styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/genius.com\/*" ], "js": [ "genius_content.js" ], "run_at": "document_end", "all_frames": true } ], "declarative_net_request": { "rule_resources": [ { "id": "genius", "enabled": true, "path": "genius_rules.json" } ] }, "permissions": [ "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "*:\/\/*.genius.com\/*", "*:\/\/*.music.youtube.com\/*" ] } |