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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}