PAA Viewer

View .paa files directly on sites like GitHub

Wat is PAA Viewer?

PAA Viewer is een Chrome-extensie ontwikkeld door Brett Mayson, en de belangrijkste functie is "View .paa files directly on sites like GitHub".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PAA Viewer

Download PAA Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
Officiële URL https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Beschrijving View .paa files directly on sites like GitHub
Bestandsgrootte 254 KB
Aantal Installaties 275
Huidige Versie 1.1
Laatst Bijgewerkt 2023-01-29
Publicatiedatum 2020-05-25
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Brett Mayson
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/synixebrett/paa
Ondersteunde Talen 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\/*"
    ]
}