Inspect and view changes in eParaksts signing extension 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": "eParaksts signing extension",
"description": "eParaksts signing extension",
"version": "1.1.6",
"minimum_edge_version": "83.0.478.50",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*://*/*",
"file:///*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"scripts": [
"eparaksts-background.js"
]
},
"permissions": [
"nativeMessaging"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}