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