Flikcer

Epileptic Content Detection

O que é Flikcer?

Flikcer é uma extensão do Chrome desenvolvida por https://flikcerapp.com, e sua principal característica é "Epileptic Content Detection".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Flikcer

Baixe arquivos de extensão Flikcer 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

                        Flikcer is a web app in the form of a website and chrome extension which aims to resolve epileptic content in videos. Flikcer will provide a measure of how dangerously epileptic a video is, by providing the number of possible triggers for a seizure. It will provide the timestamps for these triggers along with a safer version of the video, free to download.                    

Informações Básicas da Extensão

Nome Flikcer Flikcer
ID nfjphdjibgmgeklhbbkglceokkdlpkfo
URL Oficial https://chromewebstore.google.com/detail/flikcer/nfjphdjibgmgeklhbbkglceokkdlpkfo
Descrição Epileptic Content Detection
Tamanho do Arquivo 99.04 KB
Contagem de Instalações 45
Versão Atual 1.0.0
Última Atualização 2020-10-12
Data de Publicação 2020-10-03
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor https://flikcerapp.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://flikcerapp.com
URL da Página de Ajuda https://flikcerapp.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flikcer",
    "version": "1.0.0",
    "description": "Epileptic Content Detection",
    "short_name": "kc",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-3.5.1.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Epileptic Content Detection",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        }
    }
}