Livewire devtools

Chrome and Firefox DevTools extension for debugging Livewire applications.

Livewire devtools là gì?

Livewire devtools là một tiện ích mở rộng Chrome được phát triển bởi rw4lll, và tính năng chính của nó là "Chrome and Firefox DevTools extension for debugging Livewire applications.".

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

screenshot

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

Tải xuống các tệp mở rộng Livewire devtools 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

                        Upd.: there was added support for Livewire v3. Please, report any issues you may have here:
https://github.com/rw4lll/livewire-devtools/issues

Forked from original beyondcode/livewire-devtools with a few updates to bring the tool back into Chrome Web Store.                    

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

Tên Livewire devtools Livewire devtools
ID dnociedgpnpfnbkafoiilldfhpcjmikd
URL Chính Thức https://chromewebstore.google.com/detail/livewire-devtools/dnociedgpnpfnbkafoiilldfhpcjmikd
Mô tả Chrome and Firefox DevTools extension for debugging Livewire applications.
Kích Thước Tệp 1014 KB
Số Lần Cài Đặt 10,017
Phiên Bản Hiện Tại 1.1.1-chrome
Cập Nhật Lần Cuối 2023-11-09
Ngày Phát Hành 2022-07-26
Đánh Giá 4.50/5 Tổng số 12 Đánh Giá
Nhà Phát Triển rw4lll
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rw4lll/livewire-devtools#readme
URL Trang Trợ Giúp https://github.com/rw4lll/livewire-devtools/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Livewire devtools",
    "version": "1.1.1",
    "version_name": "1.1.1-chrome",
    "description": "Chrome and Firefox DevTools extension for debugging Livewire applications.",
    "manifest_version": 3,
    "icons": {
        "16": "\/icons\/16.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/icons\/16-gray.png",
            "48": "\/icons\/48-gray.png",
            "128": "\/icons\/128-gray.png"
        },
        "default_title": "Livewire Devtools",
        "default_popup": "popups\/not-found.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "devtools.html",
                "devtools-background.html",
                "build\/backend.js",
                "build\/proxy.js",
                "build\/hook-exec.js",
                "build\/detector.js",
                "build\/detector-exec.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "devtools_page": "devtools-background.html",
    "background": {
        "service_worker": "build\/service-worker.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}