Captivea Odoo Tools

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

What is Captivea Odoo Tools?

Captivea Odoo Tools is a Chrome extension developed by armand.gillot, and its main feature is "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".

Extension Screenshots

screenshot

Download Captivea Odoo Tools Extension CRX File

Download Captivea Odoo Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
Official URL https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
Description Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
File Size 47.77 KB
Installation Count 56
Current Version 1.13
Last Updated 2023-10-10
Publish Date 2023-04-06
Rating 5.00/5 Total 2 Ratings
Developer armand.gillot
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}