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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
    }
}