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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}