Flikcer

Epileptic Content Detection

Vad är Flikcer?

Flikcer är en Chrome-tillägg utvecklad av https://flikcerapp.com, och dess huvudfunktion är "Epileptic Content Detection".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Flikcer-förlängningens CRX-fil

Ladda ner Flikcer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Flikcer Flikcer
ID nfjphdjibgmgeklhbbkglceokkdlpkfo
Officiell webbadress https://chromewebstore.google.com/detail/flikcer/nfjphdjibgmgeklhbbkglceokkdlpkfo
Beskrivning Epileptic Content Detection
Filstorlek 99.04 KB
Antal Installationer 45
Aktuell Version 1.0.0
Senast Uppdaterad 2020-10-12
Publiceringsdatum 2020-10-03
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare https://flikcerapp.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://flikcerapp.com
Hjälpsida URL https://flikcerapp.com
Stödda Språk 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"
        }
    }
}