Flikcer

Epileptic Content Detection

Co to jest Flikcer?

Flikcer to rozszerzenie Chrome opracowane przez https://flikcerapp.com, a jego główną funkcją jest „Epileptic Content Detection”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Flikcer

Pobierz pliki rozszerzeń Flikcer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Flikcer Flikcer
ID nfjphdjibgmgeklhbbkglceokkdlpkfo
Oficjalny URL https://chromewebstore.google.com/detail/flikcer/nfjphdjibgmgeklhbbkglceokkdlpkfo
Opis Epileptic Content Detection
Rozmiar pliku 99.04 KB
Liczba instalacji 45
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-10-12
Data Publikacji 2020-10-03
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper https://flikcerapp.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://flikcerapp.com
Adres URL Strony Pomocy https://flikcerapp.com
Obsługiwane Języki 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"
        }
    }
}