Inspect and view changes in Chromepapers - Wallpapers for Chrome 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",
"name": "Chromepapers - Wallpapers for Chrome",
"version": "1.0",
"manifest_version": 3,
"author": "We Chern",
"description": "Beautiful wallpapers for Google Chrome",
"web_accessible_resources": [
{
"resources": [
"images/1.jpg",
"images/2.jpg",
"images/3.jpg"
],
"matches": [
"https://www.google.com/*"
]
}
],
"icons": {
"16": "/images/icons/chromepapers-icon.png",
"48": "/images/icons/chromepapers-icon.png",
"128": "/images/icons/chromepapers-icon.png"
},
"content_scripts": [
{
"matches": [
"https://www.google.com/*"
],
"js": [
"index.js"
]
}
]
}