Enhanced lyrics feature for YouTube Music with line-by-line and word-by-word sync
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "YouLy+",
"version": "1.3.0",
"description": "Enhanced lyrics feature for YouTube Music with line-by-line and word-by-word sync",
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"*://*.music.youtube.com/*"
],
"action": {
"default_popup": "src/popup/ui.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*://*.music.youtube.com/*"
],
"js": [
"src/lib/sponsorblock.js",
"src/lib/polyfill.js",
"src/localization.js",
"src/modules/settings.js",
"src/modules/lyricsManager.js",
"src/modules/lyricsRenderer.js",
"src/modules/forceTab.js",
"src/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/inject/stylesheet.css",
"src/inject/songTracker.js"
],
"matches": [
"*://*.music.youtube.com/*"
]
}
],
"background": {
"service_worker": "src/background/lyricsHandler.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}