LMV Developer Tools

LMV Developer Tools

LMV Developer Toolsคืออะไร?

LMV Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lmv.developer.tools และคุณลักษณะหลักของมันคือ "LMV Developer Tools"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LMV Developer Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}