PAA Viewer

View .paa files directly on sites like GitHub

Cos'è PAA Viewer?

PAA Viewer è un'estensione di Chrome sviluppata da Brett Mayson, e la sua funzione principale è "View .paa files directly on sites like GitHub".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PAA Viewer

Scarica i file di estensione PAA Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
URL Ufficiale https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Descrizione View .paa files directly on sites like GitHub
Dimensione del File 254 KB
Conteggio Installazioni 275
Versione Corrente 1.1
Ultimo Aggiornamento 2023-01-29
Data di Pubblicazione 2020-05-25
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Brett Mayson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/synixebrett/paa
Lingue Supportate 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\/*"
    ]
}