Captivea Odoo Tools

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

什么是Captivea Odoo Tools?

Captivea Odoo Tools是由armand.gillot开发的Chrome扩展程序,该扩展的主要功能是“Automatically adds the '?debug=1' parameter to the URL of ERP Odoo”。

扩展截图

screenshot

下载Captivea Odoo Tools扩展crx文件

下载Captivea Odoo Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Captivea Odoo Tools Captivea Odoo Tools
ID jiggdkkaoplpfjohnjfboljjgeaaollj
官方URL https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj
简介 Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
文件大小 47.77 KB
安装次数 56
当前版本 1.13
更新时间 2023-10-10
上架时间 2023-04-06
评分 5.00/5 共2次评分
开发者 armand.gillot
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}