Inspect and view changes in Ping Pong Pop 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": "Ping Pong Pop",
"short_name": "Pong Pop",
"description": "A simple and addictive old fashion game Ping Pong Pop",
"author": "Brenden Gonzalez",
"version": "1.0.0",
"manifest_version": 2,
"offline_enabled": true,
"minimum_chrome_version": "32",
"permissions": [
"background"
],
"app": {
"background": {
"persistent": true,
"scripts": [
"js/background.js"
]
}
},
"icons": {
"24": "img/pong-26.png",
"32": "img/pong-32.png",
"48": "img/pong-48.png",
"64": "img/pong-64.png",
"128": "img/pong-128.png"
}
}