The player controls the tank to fight, destroys the enemy to score, is destroyed or collided to reduce the points
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_name__",
"short_name": "__MSG_short_name__",
"version": "0.1.2",
"description": "__MSG_description__",
"icons": {
"128": "icon.png"
},
"permissions": [
"storage",
"webRequest",
"tabs",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"page": "background/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "play",
"default_popup": "index2.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}