Livewire devtools

Chrome and Firefox DevTools extension for debugging Livewire applications.

Apa itu Livewire devtools?

Livewire devtools adalah ekstensi Chrome yang dikembangkan oleh rw4lll, dan fitur utamanya adalah "Chrome and Firefox DevTools extension for debugging Livewire applications.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Livewire devtools

Unduh file ekstensi Livewire devtools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Livewire devtools Livewire devtools
ID dnociedgpnpfnbkafoiilldfhpcjmikd
URL Resmi https://chromewebstore.google.com/detail/livewire-devtools/dnociedgpnpfnbkafoiilldfhpcjmikd
Deskripsi Chrome and Firefox DevTools extension for debugging Livewire applications.
Ukuran File 1014 KB
Jumlah Instalasi 10,017
Versi Saat Ini 1.1.1-chrome
Terakhir Diperbarui 2023-11-09
Tanggal Publikasi 2022-07-26
Penilaian 4.50/5 Total 12 Penilaian
Pengembang rw4lll
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/rw4lll/livewire-devtools#readme
URL Halaman Bantuan https://github.com/rw4lll/livewire-devtools/issues
Bahasa yang Didukung 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'"
    }
}