PhotosensitivityPal

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

PhotosensitivityPal क्या है?

PhotosensitivityPal https://photosensitivitypal.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PhotosensitivityPal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}