LMV Developer Tools

LMV Developer Tools

LMV Developer Tools là gì?

LMV Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi lmv.developer.tools, và tính năng chính của nó là "LMV Developer Tools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LMV Developer Tools

Tải xuống các tệp mở rộng LMV Developer Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LMV Developer Tools LMV Developer Tools
ID annfeccochdhninjikchkkioemhdpjje
URL Chính Thức https://chromewebstore.google.com/detail/lmv-developer-tools/annfeccochdhninjikchkkioemhdpjje
Mô tả LMV Developer Tools
Kích Thước Tệp 588 KB
Số Lần Cài Đặt 373
Phiên Bản Hiện Tại 1.18
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2021-03-17
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển lmv.developer.tools
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}