Odoo Terminal

Terminal-like to send json-rpc requests and use tools for Odoo developers

Was ist Odoo Terminal?

Odoo Terminal ist eine Chrome-Erweiterung, die von Alexandre entwickelt wurde, und ihr Hauptmerkmal ist "Terminal-like to send json-rpc requests and use tools for Odoo developers".

Erweiterungsscreenshots

screenshot

Odoo Terminal-Erweiterungs-CRX-Datei herunterladen

Laden Sie Odoo Terminal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        All the power of Odoo json-rpc in a really easy way!

Terminal for Odoo:
- View records
- Search, Create, Delete records
- Call model methods
- Launch actions
- Run post request
- And much more!

Source Code: https://github.com/Tardo/OdooTerminal

This add-on is only for technical purposes, DO NOT use it on remote instances where you don't have authorization!! If you access or alter any data that does not belong to you, you are taking significant legal risks!                    

Grundlegende Informationen zur Erweiterung

Name Odoo Terminal Odoo Terminal
ID fdidojpjkbpfplcdmeaaehnjfkgpbhad
Offizielle URL https://chromewebstore.google.com/detail/odoo-terminal/fdidojpjkbpfplcdmeaaehnjfkgpbhad
Beschreibung Terminal-like to send json-rpc requests and use tools for Odoo developers
Dateigröße 65.05 KB
Installationsanzahl 3,675
Aktuelle Version 10.4.2
Letztes Update 2023-11-23
Veröffentlichungsdatum 2020-07-05
Bewertung 5.00/5 Insgesamt 13 Bewertungen
Entwickler Alexandre
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Tardo/OdooTerminal
Hilfeseite URL https://github.com/Tardo/OdooTerminal/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "src\/html\/background.html"
    },
    "browser_action": {
        "default_icon": "src\/img\/terminal-disabled-16.png",
        "default_title": "Odoo Terminal (CTRL + ,)"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{cdfbfc50-7cbf-4044-a6fb-cdef5056605c}"
        }
    },
    "content_scripts": [
        {
            "js": [
                "dist\/priv\/content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Terminal-like to send json-rpc requests and use tools for Odoo developers",
    "icons": {
        "16": "src\/img\/terminal-16.png",
        "32": "src\/img\/terminal-32.png",
        "48": "src\/img\/terminal-48.png",
        "128": "src\/img\/terminal-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Comma"
            }
        }
    },
    "manifest_version": 2,
    "name": "Odoo Terminal",
    "options_ui": {
        "page": "src\/html\/options.html",
        "open_in_tab": true,
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "short_name": "Odoo Terminal",
    "version": "10.4.2",
    "web_accessible_resources": [
        "dist\/pub\/**"
    ]
}