Permite realizar assinaturas de documentos através das aplicações da Cati Informatica.
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",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://*.cartorionet.com/*",
"https://*.assinanet.com.br/*"
],
"js": [
"extension.js"
]
}
],
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
},
"description": "Permite realizar assinaturas de documentos através das aplicações da Cati Informatica.",
"manifest_version": 2,
"name": "Complemento Cati Informatica",
"version": "1.1.0",
"permissions": [
"https://*.cartorionet.com/*",
"https://*.assinanet.com.br/*",
"declarativeContent",
"nativeMessaging"
]
}