Marionette Inspector

A devtool for Marionette

Marionette Inspectorคืออะไร?

Marionette Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A devtool for Marionette"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Marionette Inspector

ดาวน์โหลดไฟล์ส่วนขยาย Marionette Inspector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # The Marionette Inspector offers powerful tools for exploring applications.
## Understand your App, without understanding all the code


+ Visualize the view hierarchy with the UI tree
+ Visualize application activity with a full history of actions
+ Inspect view ui, events, listeners, properties
+ Inspect model attributes, listeners, properties
+ Explore Radio channel events, requests, commands
+ Explore application with an inspector magnifying glass
+ Jump between the inspector elements and source panel with intelligent links


github: https://github.com/marionettejs/marionette.inspector 
issues: https://github.com/MarionetteLabs/marionette.inspector/issues  
gitter: https://gitter.im/marionettejs/backbone.marionette    (Say hello)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Marionette Inspector Marionette Inspector
ID fbgfjlockdhidoaempmjcddibjklhpka
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/marionette-inspector/fbgfjlockdhidoaempmjcddibjklhpka
คำอธิบาย A devtool for Marionette
ขนาดไฟล์ 1.49 MB
จำนวนการติดตั้ง 2,381
เวอร์ชันปัจจุบัน 0.9.0
อัปเดตครั้งล่าสุด 2017-12-08
วันที่เผยแพร่ 2017-12-08
คะแนน 4.05/5 รวมทั้งหมด 40 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Marionette Inspector",
    "version": "0.9.0",
    "description": "A devtool for Marionette",
    "author": "Jason Laster",
    "minimum_chrome_version": "22.0",
    "icons": {
        "16": "img\/marionette-16.png",
        "48": "img\/marionette-48.png",
        "128": "img\/marionette-128.jpg"
    },
    "manifest_version": 2,
    "devtools_page": "inspector.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/marionette_contentscript.js"
            ],
            "css": [
                "css\/agent.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/lib\/*",
        "js\/agent\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}