LMV Developer Tools

LMV Developer Tools

Co je LMV Developer Tools?

LMV Developer Tools je rozšíření Chrome vyvinuté lmv.developer.tools, a jeho hlavní funkcí je „LMV Developer Tools“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření LMV Developer Tools

Stáhněte si soubory rozšíření LMV Developer Tools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A set of tools in order to make LMV development easier.

The purpose of the extension is to supply developer tools for LMV (Large model viewer).
You can read more about LMV here: https://viewer.autodesk.com

Some examples of tools that are included in this extension:
- Show / hide model
- Show / hide model bounding box
- Open model in testbed
- Open model in LMV Ninja
- Show world axis
- Show near & far planes
- FPS monitor                    

Základní Informace o Rozšíření

Název LMV Developer Tools LMV Developer Tools
ID annfeccochdhninjikchkkioemhdpjje
Oficiální URL https://chromewebstore.google.com/detail/lmv-developer-tools/annfeccochdhninjikchkkioemhdpjje
Popis LMV Developer Tools
Velikost souboru 588 KB
Počet instalací 373
Aktuální Verze 1.18
Poslední Aktualizace 2022-02-14
Datum Vydání 2021-03-17
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář lmv.developer.tools
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LMV Developer Tools",
    "description": "LMV Developer Tools",
    "version": "1.18",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "LMV Developer Tools"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "static\/js\/contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/scripts.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}