Flikcer

Epileptic Content Detection

Was ist Flikcer?

Flikcer ist eine Chrome-Erweiterung, die von https://flikcerapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Epileptic Content Detection".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Flikcer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Flikcer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Flikcer Flikcer
ID nfjphdjibgmgeklhbbkglceokkdlpkfo
Offizielle URL https://chromewebstore.google.com/detail/flikcer/nfjphdjibgmgeklhbbkglceokkdlpkfo
Beschreibung Epileptic Content Detection
Dateigröße 99.04 KB
Installationsanzahl 45
Aktuelle Version 1.0.0
Letztes Update 2020-10-12
Veröffentlichungsdatum 2020-10-03
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler https://flikcerapp.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://flikcerapp.com
Hilfeseite URL https://flikcerapp.com
Unterstützte Sprachen 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"
        }
    }
}