PAA Viewer

View .paa files directly on sites like GitHub

O que é PAA Viewer?

PAA Viewer é uma extensão do Chrome desenvolvida por Brett Mayson, e sua principal característica é "View .paa files directly on sites like GitHub".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PAA Viewer

Baixe arquivos de extensão PAA Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
URL Oficial https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Descrição View .paa files directly on sites like GitHub
Tamanho do Arquivo 254 KB
Contagem de Instalações 275
Versão Atual 1.1
Última Atualização 2023-01-29
Data de Publicação 2020-05-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Brett Mayson
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/synixebrett/paa
Idiomas Suportados 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\/*"
    ]
}