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