PAA Viewer

View .paa files directly on sites like GitHub

PAA Viewer là gì?

PAA Viewer là một tiện ích mở rộng Chrome được phát triển bởi Brett Mayson, và tính năng chính của nó là "View .paa files directly on sites like GitHub".

Ả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 PAA Viewer

Tải xuống các tệp mở rộng PAA Viewer 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

                        View .paa files directly on sites like GitHub. If you don't know what a PAA is, don't install this. Don't bother learning either, you will only find this is you know what a PAA is first.                    

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

Tên PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
URL Chính Thức https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Mô tả View .paa files directly on sites like GitHub
Kích Thước Tệp 254 KB
Số Lần Cài Đặt 275
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-01-29
Ngày Phát Hành 2020-05-25
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Brett Mayson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/synixebrett/paa
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PAA Viewer",
    "version": "1.1",
    "description": "View .paa files directly on sites like GitHub",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "sites\/github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "paa.wasm",
                "paa.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; default-src 'self';"
    },
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "https:\/\/github.com\/*"
    ]
}