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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } ] } |