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