Lavaca Developer Tools

Chrome DevTools extension for debugging Lavaca apps.

Lavaca Developer Tools क्या है?

Lavaca Developer Tools georgehendersonmusic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome DevTools extension for debugging Lavaca apps."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lavaca Developer Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Lavaca DevTools is an extension for debugging Lavaca apps. It allows you to easily:

- Visualize your application's view hierarchy and inspect the models associated with the rendered views. 
- View the data associated with the defined routes for your application. Including the pattern, controller type, controller action, and additional parameters.
- Get the current view and model in the selected elements scope, defaulting to the view on the highest layer. 

Lavaca DevTools also exposes two variables to the console.

$view - The current view in the selected elements scope. Defaults to the view on the highest layer.
$model - The current view's model in the selected elements scope. Defaults to the model of the view on the highest layer.                    

एक्सटेंशन की मूल जानकारी

नाम Lavaca Developer Tools Lavaca Developer Tools
ID kbeolfhnclacoappfhlcnlngdonhhmjb
आधिकारिक URL https://chromewebstore.google.com/detail/lavaca-developer-tools/kbeolfhnclacoappfhlcnlngdonhhmjb
विवरण Chrome DevTools extension for debugging Lavaca apps.
फ़ाइल का आकार 10.42 MB
स्थापना संख्या 134
वर्तमान संस्करण 0.0.5
अंतिम अपडेट 2013-12-04
प्रकाशन तिथि 2013-12-03
डेवलपर georgehendersonmusic
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/georgehenderson/lavaca-devtools
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lavaca Developer Tools",
    "version": "0.0.5",
    "description": "Chrome DevTools extension for debugging Lavaca apps.",
    "icons": {
        "128": "src\/img\/icon-144x144.png"
    },
    "devtools_page": "src\/html\/index.html",
    "options_page": "src\/html\/panel.html",
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/components\/jquery\/index.js",
                "src\/js\/content_script.js"
            ],
            "css": [
                "src\/css\/injected-styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "src\/js\/attach.js"
    ]
}