PAA Viewer

View .paa files directly on sites like GitHub

PAA Viewerとは何ですか?

PAA ViewerはBrett Maysonによって開発されたChromeの拡張機能で、その主な機能は「View .paa files directly on sites like GitHub」です。

拡張機能のスクリーンショット

screenshot

PAA Viewer拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
    ]
}