Livewire devtools

Chrome and Firefox DevTools extension for debugging Livewire applications.

Livewire devtoolsとは何ですか?

Livewire devtoolsはrw4lllによって開発されたChromeの拡張機能で、その主な機能は「Chrome and Firefox DevTools extension for debugging Livewire applications.」です。

拡張機能のスクリーンショット

screenshot

Livewire devtools拡張機能のCRXファイルをダウンロード

Livewire devtools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Livewire devtools Livewire devtools
ID dnociedgpnpfnbkafoiilldfhpcjmikd
公式URL https://chromewebstore.google.com/detail/livewire-devtools/dnociedgpnpfnbkafoiilldfhpcjmikd
説明 Chrome and Firefox DevTools extension for debugging Livewire applications.
ファイルサイズ 1014 KB
インストール数 10,017
現在のバージョン 1.1.1-chrome
最終更新日 2023-11-09
公開日 2022-07-26
評価 4.50/5 合計 12 レビュー
開発者 rw4lll
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/rw4lll/livewire-devtools#readme
ヘルプページのURL https://github.com/rw4lll/livewire-devtools/issues
対応言語 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'"
    }
}