PAA Viewer

View .paa files directly on sites like GitHub

什麼是PAA Viewer?

PAA Viewer是由Brett Mayson開發的Chrome擴展程式,該擴展的主要功能是“View .paa files directly on sites like GitHub”。

擴展截圖

screenshot

下載PAA Viewer擴展crx文件

下載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
官方網址 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\/*"
    ]
}