Piral Inspector

The official Piral developer tools browser extension.

Piral Inspector란 무엇입니까?

Piral Inspector은(는) smapiot에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official Piral developer tools browser extension."입니다.

확장 프로그램 스크린샷

screenshot

Piral Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This simple devtools extension lets you inspect and manipulate your Piral instance for debugging purposes. It only works when either debugging a Piral instance or running a pilet in an emulator version of a Piral instance.                    

확장 프로그램 기본 정보

이름 Piral Inspector Piral Inspector
ID ikbpelpjfgmplidagknaaegjhfigcbfl
공식 URL https://chromewebstore.google.com/detail/piral-inspector/ikbpelpjfgmplidagknaaegjhfigcbfl
설명 The official Piral developer tools browser extension.
파일 크기 940 KB
설치 횟수 366
현재 버전 0.11.0
최근 업데이트 2024-02-04
출시 날짜 2020-06-09
평점 5.00/5 총 3 개의 평점
개발자 smapiot
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://piral.io
도움말 페이지 URL https://docs.piral.io
개인정보 보호 정책 페이지 URL https://smapiot.com/legal/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "browser_specific_settings": {
        "gecko": {
            "id": "{9d4683ff-8d9c-40ad-adb4-9fa895a3a0d7}",
            "strict_min_version": "52.0"
        }
    },
    "name": "Piral Inspector",
    "short_name": "pi-inspect",
    "version": "0.11.0",
    "description": "The official Piral developer tools browser extension.",
    "author": "smapiot",
    "homepage_url": "https:\/\/piral.io",
    "icons": {
        "16": "assets\/logo_16.png",
        "32": "assets\/logo_32.png",
        "48": "assets\/logo_48.png",
        "64": "assets\/logo_64.png",
        "96": "assets\/logo_96.png",
        "128": "assets\/logo_128.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/disabled_16.png",
            "32": "assets\/disabled_32.png",
            "48": "assets\/disabled_48.png",
            "64": "assets\/disabled_64.png",
            "96": "assets\/disabled_96.png",
            "128": "assets\/disabled_128.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "*:\/\/localhost\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*"
            ],
            "js": [
                ".\/contentScript.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/localhost\/*"
    ],
    "background": {
        "service_worker": "serviceWorker.js",
        "type": "module"
    },
    "permissions": [
        "offscreen",
        "storage",
        "scripting",
        "devtools_page",
        "browser_action"
    ],
    "devtools_page": ".\/devtools.html"
}