Utilitário Calima
Utilitário de apoio às funcionalidades externas do Calima ERP
Was ist Utilitário Calima?
Utilitário Calima ist eine Chrome-Erweiterung, die von Projetus TI entwickelt wurde, und ihr Hauptmerkmal ist "Utilitário de apoio às funcionalidades externas do Calima ERP".
Erweiterungsscreenshots
Utilitário Calima-Erweiterungs-CRX-Datei herunterladen
Laden Sie Utilitário Calima-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Utilize esta extensão para habilitar o preenchimento do PGDAS, DEFIS e outras funcionalidades do Calima ERP Contábil. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | npbhbphfdjifccghelcmcphoegfbidbc |
| Offizielle URL | https://chromewebstore.google.com/detail/utilit%C3%A1rio-calima/npbhbphfdjifccghelcmcphoegfbidbc |
| Beschreibung | Utilitário de apoio às funcionalidades externas do Calima ERP |
| Dateigröße | 121 KB |
| Installationsanzahl | 9,198 |
| Aktuelle Version | 1.3.0 |
| Letztes Update | 2023-01-05 |
| Veröffentlichungsdatum | 2021-03-02 |
| Bewertung | 2.46/5 Insgesamt 13 Bewertungen |
| Entwickler | Projetus TI |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.calimaerp.com/ |
| Hilfeseite URL | https://ajuda.calimaerp.com/pt/ |
| URL der Datenschutzrichtlinien-Seite | https://www.projetusti.com.br/privacidade |
| Unterstützte Sprachen | pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Utilit\u00e1rio Calima",
"description": "Utilit\u00e1rio de apoio \u00e0s funcionalidades externas do Calima ERP",
"version": "1.3.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": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"cookies",
"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\/*"
]
},
"manifest_version": 2
} | |