Captivea Odoo Tools
Automatically adds the '?debug=1' parameter to the URL of ERP Odoo
Apa itu Captivea Odoo Tools?
Captivea Odoo Tools adalah ekstensi Chrome yang dikembangkan oleh armand.gillot, dan fitur utamanya adalah "Automatically adds the '?debug=1' parameter to the URL of ERP Odoo".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Captivea Odoo Tools
Unduh file ekstensi Captivea Odoo Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Captivea Odoo Tools |
ID | jiggdkkaoplpfjohnjfboljjgeaaollj |
URL Resmi | https://chromewebstore.google.com/detail/captivea-odoo-tools/jiggdkkaoplpfjohnjfboljjgeaaollj |
Deskripsi | Automatically adds the '?debug=1' parameter to the URL of ERP Odoo |
Ukuran File | 47.77 KB |
Jumlah Instalasi | 56 |
Versi Saat Ini | 1.13 |
Terakhir Diperbarui | 2023-10-10 |
Tanggal Publikasi | 2023-04-06 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | armand.gillot |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |