Inspect and view changes in WallpaperPlay browser extension 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "WallpaperPlay browser extension",
"version": "1.0.0",
"description": "You can set YouTube as your wallpaper directly from the browser",
"icons": {
"16": "assets/plan1@16px.png",
"32": "assets/plan1@32px.png",
"48": "assets/plan1@48px.png",
"96": "assets/plan1@98px.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/plan1@16px.png",
"48": "assets/plan1@48px.png",
"128": "assets/plan1@128px.png"
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"contextMenus",
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"*://*.youtube.com/*"
]
}