Inspect and view changes in Classic Game - Tetris 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.0.0",
"description": "__MSG_extensionDescription__",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/icon-48.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+T"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "{f5f8fb18-cd49-434f-97a6-1fd795c7558c}"
}
}
}