Captivea Odoo Tools

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

Vad är Captivea Odoo Tools?

Captivea Odoo Tools är en Chrome-tillägg utvecklad av armand.gillot, och dess huvudfunktion är "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Tilläggsskärmbilder

screenshot

Ladda ner Captivea Odoo Tools-förlängningens CRX-fil

Ladda ner Captivea Odoo Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
Officiell webbadress https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Beskrivning Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Filstorlek 47.77 KB
Antal Installationer 56
Aktuell Version 1.13
Senast Uppdaterad 2023-10-10
Publiceringsdatum 2023-04-06
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare armand.gillot
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}