Inspect and view changes in 3D Chess Set 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": "3D Chess Set",
"short_name": "Chess",
"description": "A simple yet fun and addictive game.",
"author": "Brenden Gonzalez",
"version": "0.1",
"manifest_version": 2,
"offline_enabled": true,
"minimum_chrome_version": "30",
"permissions": [
"webview",
"background",
"idle"
],
"app": {
"background": {
"persistent": true,
"scripts": [
"js/background.js"
]
}
},
"icons": {
"16": "icon/chess-16.png",
"24": "icon/chess-24.png",
"32": "icon/chess-32.png",
"48": "icon/chess-48.png",
"64": "icon/chess-64.png",
"72": "icon/chess-72.png",
"96": "icon/chess-96.png",
"128": "icon/chess-128.png"
}
}