Marionette Inspector
A devtool for Marionette
Marionette Inspector क्या है?
Marionette Inspector Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A devtool for Marionette"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Marionette Inspector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |