Captivea Odoo Tools

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

Wat is Captivea Odoo Tools?

Captivea Odoo Tools is een Chrome-extensie ontwikkeld door armand.gillot, en de belangrijkste functie is "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Captivea Odoo Tools

Download Captivea Odoo Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
Officiële URL https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Beschrijving Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Bestandsgrootte 47.77 KB
Aantal Installaties 56
Huidige Versie 1.13
Laatst Bijgewerkt 2023-10-10
Publicatiedatum 2023-04-06
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar armand.gillot
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}