Inspect and view changes in (dev) Simet App 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": "(dev) Simet App",
"description": "O SIMET é um sistema que realiza testes de desempenho em redes com acesso a Internet, mantido pelo NIC.br.",
"manifest_version": 2,
"minimum_chrome_version": "40",
"offline_enabled": false,
"version": "0.0.9",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhGFgYKFj4XT7Zb5b7PB5RNIrwriObfTrykO1AFYZSLrcz2I24Ms8/Si8NeHhhTsdvSm6l6sIt25aQz/Lo4+3d3oob7C98GHP9/va3nJaJhElYS9XFiT9UDi7hGAqqzt9hUChPpl2llVEG9nlng/549zHmqauPAywUzrItuzu0LWWVRJnF9DTwB22UcAdAEm+gYotezefHIOY3ajoV7kjaicofVX0RU8wh6ez5eC6+6G6VZjqgZuQSN6+Y46eKnWMLahvFoyyY7GnrKq4wWvnwdBa7jdxc6WNp2Hoxe7xhVD+UiOFg2IevFvm1iIiZ1ReTtsztxglSEaB4vuzgLh2OQIDAQAB",
"icons": {
"16": "simet-icon-16.png",
"128": "simet-icon.png"
},
"app": {
"background": {
"scripts": [
"module.js",
"index.js"
],
"persistent": false
}
},
"url_handlers": {
"simet": {
"matches": [
"https://quarentena.simet.nic.br/portal-plugin/plugin.html"
],
"title": "Simet client"
}
},
"externally_connectable": {
"matches": [
"*://quarentena.simet.nic.br/portal-plugin/*"
]
},
"sockets": {
"udp": {
"send": [
"*:*"
],
"bind": [
"*:*"
]
},
"tcp": {
"connect": [
"*:*",
"*:*"
]
}
},
"permissions": [
{
"socket": [
"tcp-connect",
"resolve-host",
"udp-bind:*:*",
"udp-send-to:*:*"
]
}
],
"platforms": [
{
"nacl_arch": "x86-64",
"sub_package_path": "_platform_specific/x86-64/"
},
{
"nacl_arch": "x86-32",
"sub_package_path": "_platform_specific/x86-32/"
}
]
}