Inspect and view changes in Extensão Comunicação Techne 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": "Extensão Comunicação Techne",
"version": "1.0.2",
"description": "Assinatura digital e transmissão de dados (Techne).",
"manifest_version": 3,
"author": "Alysson Júnio da Silva Tostes",
"action": {
"default_popup": "popup.html",
"default_title": "Techne Engenharia e Sistemas"
},
"icons": {
"128": "icon/techne-logo.png"
},
"permissions": [
"nativeMessaging"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"messaging/EventListener.js",
"messaging/MessageSender.js",
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"ObterVersao.json"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}