Utilitário Calima

Utilitário Calima

Utilitário de apoio às funcionalidades externas do Calima ERP

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Utilitário Calima",
  "description": "Utilitário de apoio às funcionalidades externas do Calima ERP",
  "version": "1.4.0",
  "icons": {
    "48": "icons/48x48.png",
    "72": "icons/72x72.png",
    "96": "icons/96x96.png",
    "128": "icons/128x128.png",
    "144": "icons/144x144.png",
    "192": "icons/192x192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.calima.app/*",
        "http://localhost:3000/*",
        "https://*.receita.fazenda.gov.br/*",
        "https://*.acesso.gov.br/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.calima.app/*",
    "http://localhost:3000/*",
    "https://*.receita.fazenda.gov.br/*",
    "https://*.acesso.gov.br/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.calima.app/*",
      "http://localhost:3000/*",
      "https://*.receita.fazenda.gov.br/*",
      "https://*.acesso.gov.br/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost:* http://127.0.0.1:*"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "downloadScript.js"
      ],
      "matches": [
        "https://*.calima.app/*",
        "http://localhost:3000/*",
        "https://*.receita.fazenda.gov.br/*",
        "https://*.acesso.gov.br/*"
      ]
    }
  ],
  "manifest_version": 3
}