Lavaca Developer Tools

Chrome DevTools extension for debugging Lavaca apps.

Lavaca Developer Tools là gì?

Lavaca Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi georgehendersonmusic, và tính năng chính của nó là "Chrome DevTools extension for debugging Lavaca apps.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lavaca Developer Tools

Tải xuống các tệp mở rộng Lavaca Developer Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lavaca Developer Tools Lavaca Developer Tools
ID kbeolfhnclacoappfhlcnlngdonhhmjb
URL Chính Thức https://chromewebstore.google.com/detail/lavaca-developer-tools/kbeolfhnclacoappfhlcnlngdonhhmjb
Mô tả Chrome DevTools extension for debugging Lavaca apps.
Kích Thước Tệp 10.42 MB
Số Lần Cài Đặt 134
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2013-12-04
Ngày Phát Hành 2013-12-03
Nhà Phát Triển georgehendersonmusic
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/georgehenderson/lavaca-devtools
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}