Livewire devtools

Chrome and Firefox DevTools extension for debugging Livewire applications.

Livewire devtools क्या है?

Livewire devtools rw4lll द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome and Firefox DevTools extension for debugging Livewire applications."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Livewire devtools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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'"
    }
}