PAA Viewer

View .paa files directly on sites like GitHub

Что такое PAA Viewer?

PAA Viewer - это расширение Chrome, разработанное Brett Mayson, и его основная функция - "View .paa files directly on sites like GitHub".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения PAA Viewer

Скачайте файлы расширений PAA Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название PAA Viewer PAA Viewer
ID pmagcbgnmpadikplgnkoablkjjdinmni
Официальный URL https://chromewebstore.google.com/detail/paa-viewer/pmagcbgnmpadikplgnkoablkjjdinmni
Описание View .paa files directly on sites like GitHub
Размер файла 254 KB
Количество установок 275
Текущая Версия 1.1
Последнее Обновление 2023-01-29
Дата публикации 2020-05-25
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Brett Mayson
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/synixebrett/paa
Поддерживаемые языки 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\/*"
    ]
}