Inspect and view changes in EVALWebSigner 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",
"manifest_version": 3,
"name": "EVALWebSigner",
"version": "1.6.91",
"description": "Assinatura de documentos com uso de certificados digitais.",
"permissions": [
"nativeMessaging",
"storage",
"downloads",
"tabs"
],
"icons": {
"16": "icons/icone-16.png",
"48": "icons/icone-48.png",
"128": "icons/icone-128.png"
},
"action": {
"default_icon": "icons/icone-ext-16.png",
"default_title": "EVALWebSigner",
"default_popup": "popup-evalwebsigner.html"
},
"background": {
"service_worker": "scripts/event-page-evalwebsigner.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/content-evalwebsigner.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"scripts/content-evalwebsigner.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}