Piral Inspector

The official Piral developer tools browser extension.

Piral Inspector là gì?

Piral Inspector là một tiện ích mở rộng Chrome được phát triển bởi smapiot, và tính năng chính của nó là "The official Piral developer tools browser extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Piral Inspector

Tải xuống các tệp mở rộng Piral Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Piral Inspector Piral Inspector
ID ikbpelpjfgmplidagknaaegjhfigcbfl
URL Chính Thức https://chromewebstore.google.com/detail/piral-inspector/ikbpelpjfgmplidagknaaegjhfigcbfl
Mô tả The official Piral developer tools browser extension.
Kích Thước Tệp 940 KB
Số Lần Cài Đặt 366
Phiên Bản Hiện Tại 0.11.0
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2020-06-09
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển smapiot
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://piral.io
URL Trang Trợ Giúp https://docs.piral.io
URL Trang Chính Sách Bảo Mật https://smapiot.com/legal/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
}