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
官方網址 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": [
                ""
            ]
        }
    ]
}