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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}