PhotosensitivityPal

This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.

ما هو PhotosensitivityPal؟

PhotosensitivityPal هو إضافة Chrome تم تطويرها بواسطة https://photosensitivitypal.com، والميزة الرئيسية لها هي "This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة PhotosensitivityPal

قم بتنزيل ملفات الامتداد PhotosensitivityPal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        PhotosensitivityPal looks for potentially seizure-inducing content in the GIFs and videos you encounter while browsing the internet, so you don't have to worry about accidentally encountering GIFs with flashes or bright patterns that might cause photosensitive distress.                    

معلومات أساسية عن التمديد

الاسم PhotosensitivityPal PhotosensitivityPal
ID jfbeiilmcgaofgkhkbdepkafoikbmklh
عنوان URL الرسمي https://chromewebstore.google.com/detail/photosensitivitypal/jfbeiilmcgaofgkhkbdepkafoikbmklh
الوصف This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.
حجم الملف 174 KB
عدد التثبيتات 39
النسخة الحالية 1.2.1
آخر تحديث 2022-02-06
تاريخ النشر 2021-05-10
تقييم 5.00/5 مجموع تقييمات 1
المطور https://photosensitivitypal.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PhotosensitivityPal",
    "version": "1.2.1",
    "description": "This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.",
    "permissions": [
        "",
        "http:\/\/localhost:8000\/gif_analyzer\/detect\/",
        "https:\/\/localhost:8000\/gif_analyzer\/detect\/",
        "https:\/\/radiant-retreat-42402.herokuapp.com\/gif_analyzer\/detect\/"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "PhotosensitivityPal"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "jquery-3.3.1.min.js",
                "d3.min.js",
                "plot-risk.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "owl-32x32.png",
        "48": "owl-32x32.png",
        "128": "owl-32x32.png"
    }
}