Inspect and view changes in SMARAPD - Assinatura de documentos 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,
"version": "1.3.0",
"name": "SMARAPD - Assinatura de documentos",
"description": "Assinatura de documentos (digital e eletrônica)",
"author": "SMARAPD",
"icons": {
"16": "assets/icons/icon_16x16.png",
"32": "assets/icons/icon_1_32x32.png",
"48": "assets/icons/icon_2_48x48.png",
"128": "assets/icons/icon_3_128x128.png"
},
"browser_action": {
"default_popup": "home/index.html"
},
"background": {
"scripts": [
"background/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"tabs",
"activeTab",
"webRequest",
"browserSettings",
"nativeMessaging",
"management",
"scripting",
"file:///*",
"*://*/*",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "smarapd@smarapd.com.br",
"strict_min_version": "109.0"
}
}
}