Captivea Odoo Tools

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

Cos'è Captivea Odoo Tools?

Captivea Odoo Tools è un'estensione di Chrome sviluppata da armand.gillot, e la sua funzione principale è "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Captivea Odoo Tools

Scarica i file di estensione Captivea Odoo Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
URL Ufficiale https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Descrizione Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Dimensione del File 47.77 KB
Conteggio Installazioni 56
Versione Corrente 1.13
Ultimo Aggiornamento 2023-10-10
Data di Pubblicazione 2023-04-06
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore armand.gillot
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}