Captivea Odoo Tools

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

Hvad er Captivea Odoo Tools?

Captivea Odoo Tools er en Chrome-udvidelse udviklet af armand.gillot, og dens hovedfunktion er "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Udvidelsesskærmbilleder

screenshot

Download Captivea Odoo Tools-udvidelses-CRX-fil

Download Captivea Odoo Tools-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
Officiel URL https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Beskrivelse Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Filstørrelse 47.77 KB
Antal Installationer 56
Nuværende Version 1.13
Senest Opdateret 2023-10-10
Udgivelsesdato 2023-04-06
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler armand.gillot
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}