PhotosensitivityPal

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

O que é PhotosensitivityPal?

PhotosensitivityPal é uma extensão do Chrome desenvolvida por https://photosensitivitypal.com, e sua principal característica é "This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão PhotosensitivityPal

Baixe arquivos de extensão PhotosensitivityPal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PhotosensitivityPal PhotosensitivityPal
ID jfbeiilmcgaofgkhkbdepkafoikbmklh
URL Oficial https://chromewebstore.google.com/detail/photosensitivitypal/jfbeiilmcgaofgkhkbdepkafoikbmklh
Descrição This extension automatically detects and blocks GIFs with potentially seizure-inducing content while the user browses the internet.
Tamanho do Arquivo 174 KB
Contagem de Instalações 39
Versão Atual 1.2.1
Última Atualização 2022-02-06
Data de Publicação 2021-05-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://photosensitivitypal.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}