Odoo Debug Pro
Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)
Co to jest Odoo Debug Pro?
Odoo Debug Pro to rozszerzenie Chrome opracowane przez https://atularvind.com, a jego główną funkcją jest „Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Odoo Debug Pro
Pobierz pliki rozszerzeń Odoo Debug Pro w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Odoo Debug is a super simple Odoo developer tool for chrome which helps to toggle the developer mode using default keyboard shorcuts & icon click events.
Keyboard Shortcuts:
Press (ctrl + .) for normal debug mode
Press (ctrl + shift + .) for debug mode with assets
Toggle Debug on Odoo Debug Icon Click:
Single click to toggle the developer mode
Double click to toggle the developer mode with assets.
Contribute Here: https://github.com/atularvind/OdooDebug Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nfnladagngmiggfaojdbpjdpehdfgiac |
| Oficjalny URL | https://chromewebstore.google.com/detail/odoo-debug-pro/nfnladagngmiggfaojdbpjdpehdfgiac |
| Opis | Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.) |
| Rozmiar pliku | 15.57 KB |
| Liczba instalacji | 2,718 |
| Aktualna Wersja | 1.2.0 |
| Ostatnia Aktualizacja | 2022-08-09 |
| Data Publikacji | 2018-12-18 |
| Ocena | 3.69/5 Łącznie 13 Oceny |
| Deweloper | https://atularvind.com |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://atularvind.com |
| Adres URL Strony Pomocy | https://github.com/atularvind/OdooDebug/issues |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Odoo Debug Pro",
"description": "Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)",
"version": "1.2.0",
"author": "Atul Arvind",
"homepage_url": "https:\/\/atularvind.com",
"offline_enabled": true,
"browser_action": {
"default_title": "Press Ctrl+. To Toggle Odoo Developer Mode.",
"default_icon": "debug_off.png"
},
"background": {
"scripts": [
"odoo_debug.js"
]
},
"icons": {
"16": "odoo_debug.png",
"32": "odoo_debug.png",
"48": "odoo_debug.png",
"128": "odoo_debug.png"
},
"commands": {
"toggle-odoo-debug": {
"suggested_key": {
"default": "Ctrl+Period",
"windows": "Ctrl+Period",
"mac": "Command+Period",
"chromeos": "Ctrl+Period",
"linux": "Ctrl+Period"
},
"description": "Toggle Odoo Debug"
},
"toggle-odoo-debug-asset": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"windows": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period",
"chromeos": "Ctrl+Shift+Period",
"linux": "Ctrl+Shift+Period"
},
"description": "Toggle Odoo Debug with assets"
}
},
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |