Marionette Inspector
A devtool for Marionette
什麼是Marionette Inspector?
Marionette Inspector是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“A devtool for Marionette”。
擴展截圖
下載Marionette Inspector擴展crx文件
下載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 |
ID | fbgfjlockdhidoaempmjcddibjklhpka |
官方網址 | 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" ] } |