PAA Viewer

View .paa files directly on sites like GitHub

Co to jest PAA Viewer?

PAA Viewer to rozszerzenie Chrome opracowane przez Brett Mayson, a jego główną funkcją jest „View .paa files directly on sites like GitHub”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PAA Viewer

Pobierz pliki rozszerzeń PAA Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
Oficjalny URL https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Opis View .paa files directly on sites like GitHub
Rozmiar pliku 254 KB
Liczba instalacji 275
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-01-29
Data Publikacji 2020-05-25
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Brett Mayson
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/synixebrett/paa
Obsługiwane Języki 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\/*"
    ]
}