Captivea Odoo Tools

Automatically adds the '?debug=1' parameter to the URL of ERP Odoo

Qu'est-ce que Captivea Odoo Tools ?

Captivea Odoo Tools est une extension Chrome développée par armand.gillot, et sa fonction principale est "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Captivea Odoo Tools

Téléchargez les fichiers d'extension Captivea Odoo Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
URL Officiel https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Description Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Taille du Fichier 47.77 KB
Nombre d'Installations 56
Version Actuelle 1.13
Dernière Mise à Jour 2023-10-10
Date de Publication 2023-04-06
Évaluation 5.00/5 Total 2 Évaluations
Développeur armand.gillot
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}