Marionette Inspector
A devtool for Marionette
Marionette Inspector란 무엇입니까?
Marionette Inspector은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A devtool for Marionette"입니다.
확장 프로그램 스크린샷
Marionette Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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 |
공식 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" ] } |