PAA Viewer

View .paa files directly on sites like GitHub

What is PAA Viewer?

PAA Viewer is a Chrome extension developed by Brett Mayson, and its main feature is "View .paa files directly on sites like GitHub".

Extension Screenshots

screenshot

Download PAA Viewer Extension CRX File

Download PAA Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
Official URL https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Description View .paa files directly on sites like GitHub
File Size 254 KB
Installation Count 275
Current Version 1.1
Last Updated 2023-01-29
Publish Date 2020-05-25
Rating 5.00/5 Total 1 Ratings
Developer Brett Mayson
Email [email protected]
Payment Type free
Extension Website https://github.com/synixebrett/paa
Supported Languages 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\/*"
    ]
}