PAA Viewer

View .paa files directly on sites like GitHub

PAA Viewerคืออะไร?

PAA Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brett Mayson และคุณลักษณะหลักของมันคือ "View .paa files directly on sites like GitHub"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PAA Viewer

ดาวน์โหลดไฟล์ส่วนขยาย PAA Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
คำอธิบาย View .paa files directly on sites like GitHub
ขนาดไฟล์ 254 KB
จำนวนการติดตั้ง 275
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-01-29
วันที่เผยแพร่ 2020-05-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Brett Mayson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/synixebrett/paa
ภาษาที่รองรับ 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\/*"
    ]
}