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
电子邮箱 [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": [
                ""
            ]
        }
    ]
}