Change your desktop wallpaper directly from Chrome! Choose your favorite picture from the internet (Windows only)
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": "Set as desktop background",
"version": "1.0.0",
"action": {
"default_popup": "popup.html"
},
"description": "Change your desktop wallpaper directly from Chrome! Choose your favorite picture from the internet (Windows only)",
"icons": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
},
"background": {
"service_worker": "script/background.js"
},
"options_page": "main.html",
"permissions": [
"contextMenus",
"downloads",
"nativeMessaging",
"notifications",
"storage"
]
}