Inspect and view changes in YTM+ for YouTube™ Music source codes across current and past versions
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": 2,
"name": "YTM+ for YouTubeâ„¢ Music",
"description": "Enhance Your YouTube Music Experience with YTM+ Edge Extension!",
"version": "3.8.24.1241",
"browser_action": {
"default_icon": "assets/128-icon.png",
"default_popup": "html/popup.html"
},
"permissions": [
"storage",
"*://music.youtube.com/*",
"*://*.spotify.com/*",
"*://*.ytmplus.app/*",
"notifications",
"cookies",
"tabs",
"<all_urls>"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": {
"16": "assets/16-icon.png",
"48": "assets/48-icon.png",
"128": "assets/128-icon.png"
},
"content_scripts": [
{
"matches": [
"*://music.youtube.com/*"
],
"js": [
"content.bundle.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.spotify.com/*"
],
"js": [
"spotify.bundle.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.ytmplus.app/lastfm*"
],
"js": [
"lastfm.bundle.js"
],
"run_at": "document_end"
}
],
"options_page": "html/options.html",
"web_accessible_resources": [
"src/options/options.html",
"css/youtube_music_light.css",
"css/popup.css",
"assets/*",
"utils/*"
],
"background": {
"persistent": false,
"scripts": [
"background.bundle.js"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}