Synced Lyrics for YouTube Music
Replaces YouTube Music lyrics with synced lyrics if available.
Synced Lyrics for YouTube Music क्या है?
Synced Lyrics for YouTube Music Patrik Ackermann द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces YouTube Music lyrics with synced lyrics if available."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Synced Lyrics for YouTube Music एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This browser extension adds synced lyrics to YouTube music. This means that the words that you currently hear are highlighted. To use this extension you need a Spotify developer account. It's free and can be made in less than a minute. You can find further instructions in the extensions settings.
एक्सटेंशन की मूल जानकारी
नाम | Synced Lyrics for YouTube Music |
ID | mdenoppdglojbigppnfogdibojpjffnp |
आधिकारिक URL | https://chromewebstore.google.com/detail/synced-lyrics-for-youtube/mdenoppdglojbigppnfogdibojpjffnp |
विवरण | Replaces YouTube Music lyrics with synced lyrics if available. |
फ़ाइल का आकार | 11.37 KB |
स्थापना संख्या | 64 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-07-27 |
प्रकाशन तिथि | 2023-07-18 |
रेटिंग | 1.00/5 कुल 4 रेटिंग्स |
डेवलपर | Patrik Ackermann |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Synced Lyrics for YouTube Music", "version": "1.0.2", "description": "Replaces YouTube Music lyrics with synced lyrics if available.", "icons": { "128": "syncedLyricsIcon.png" }, "permissions": [ "storage", "*:\/\/music.youtube.com\/*" ], "host_permissions": [], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Synced Lyrics for YouTube Music" }, "content_scripts": [ { "matches": [ "*:\/\/music.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ] } ], "manifest_version": 3 } |