LMV Developer Tools

LMV Developer Tools

LMV Developer Toolsとは何ですか?

LMV Developer Toolsはlmv.developer.toolsによって開発されたChromeの拡張機能で、その主な機能は「LMV Developer Tools」です。

拡張機能のスクリーンショット

screenshot
screenshot

LMV Developer Tools拡張機能のCRXファイルをダウンロード

LMV Developer Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 LMV Developer Tools LMV Developer Tools
ID annfeccochdhninjikchkkioemhdpjje
公式URL https://chromewebstore.google.com/detail/lmv-developer-tools/annfeccochdhninjikchkkioemhdpjje
説明 LMV Developer Tools
ファイルサイズ 588 KB
インストール数 373
現在のバージョン 1.18
最終更新日 2022-02-14
公開日 2021-03-17
評価 5.00/5 合計 5 レビュー
開発者 lmv.developer.tools
Eメール [email protected]
支払い方法 free
対応言語 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": [
                ""
            ]
        }
    ]
}