Captivea Odoo Tools
Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Was ist Captivea Odoo Tools?
Captivea Odoo Tools ist eine Chrome-Erweiterung, die von armand.gillot entwickelt wurde, und ihr Hauptmerkmal ist "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".
Erweiterungsscreenshots
Captivea Odoo Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Captivea Odoo Tools-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
This chrome extension allows you to permanently activate the debug mode on any Odoo ERP. If you need, it is possible to disable this function.
Grundlegende Informationen zur Erweiterung
Name | Captivea Odoo Tools |
ID | jiggdkkaoplpfjohnjfboljjgeaaollj |
Offizielle URL | https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj |
Beschreibung | Automatically adds the '?debug=1' parameter to the URL of ERP Odoo |
Dateigröße | 47.77 KB |
Installationsanzahl | 56 |
Aktuelle Version | 1.13 |
Letztes Update | 2023-10-10 |
Veröffentlichungsdatum | 2023-04-06 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | armand.gillot |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Captivea Odoo Tools", "description": "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo", "version": "1.13", "author": { "email": "[email protected]" }, "permissions": [ "tabs", "storage" ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "exclude_matches": [ "*:\/\/*\/web\/database\/selector*", "*:\/\/*\/web\/login*" ], "matches": [ "*:\/\/*\/web\/*", "*:\/\/*\/web*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ] } |