PAA Viewer

View .paa files directly on sites like GitHub

Co je PAA Viewer?

PAA Viewer je rozšíření Chrome vyvinuté Brett Mayson, a jeho hlavní funkcí je „View .paa files directly on sites like GitHub“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření PAA Viewer

Stáhněte si soubory rozšíření PAA Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
Oficiální URL https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Popis View .paa files directly on sites like GitHub
Velikost souboru 254 KB
Počet instalací 275
Aktuální Verze 1.1
Poslední Aktualizace 2023-01-29
Datum Vydání 2020-05-25
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Brett Mayson
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/synixebrett/paa
Podporované Jazyky 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\/*"
    ]
}