Lavaca Developer Tools

Chrome DevTools extension for debugging Lavaca apps.

什么是Lavaca Developer Tools?

Lavaca Developer Tools是由georgehendersonmusic开发的Chrome扩展程序,该扩展的主要功能是“Chrome DevTools extension for debugging Lavaca apps.”。

扩展截图

screenshot
screenshot
screenshot

下载Lavaca Developer Tools扩展crx文件

下载Lavaca Developer Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}