Captivea Odoo Tools

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

Captivea Odoo Toolsคืออะไร?

Captivea Odoo Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย armand.gillot และคุณลักษณะหลักของมันคือ "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Captivea Odoo Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}