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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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