Mighty Matrix
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": "MightyMatrix",
"version": "0.0.2",
"manifest_version": 2,
"description": "Mighty Matrix",
"homepage_url": "http://MightyMatrix.com",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"options_page": "src/options/index.html",
"page_action": {
"default_icon": "icons/icon19.png",
"default_title": "Mighty Matrix action page",
"default_popup": "src/page_action/page_action.html"
},
"permissions": [
"http://matrix.itasoftware.com/*",
"https://matrix.itasoftware.com/*",
"storage"
],
"omnibox": {
"keyword": "Mighty Matrix"
},
"content_scripts": [
{
"matches": [
"http://matrix.itasoftware.com/*",
"https://matrix.itasoftware.com/*"
],
"css": [
"src/inject/inject.css"
]
},
{
"matches": [
"http://matrix.itasoftware.com/*",
"https://matrix.itasoftware.com/*"
],
"js": [
"js/jquery/jquery.min.js",
"js/protobuf.min.js",
"js/base64ArrayBuffer.js",
"src/inject/inject.js",
"src/inject/citycodes.js",
"src/inject/country2a.js"
]
}
]
}