Flikcer

Epileptic Content Detection

Что такое Flikcer?

Flikcer - это расширение Chrome, разработанное https://flikcerapp.com, и его основная функция - "Epileptic Content Detection".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Flikcer

Скачайте файлы расширений Flikcer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Flikcer Flikcer
ID nfjphdjibgmgeklhbbkglceokkdlpkfo
Официальный URL https://chromewebstore.google.com/detail/flikcer/nfjphdjibgmgeklhbbkglceokkdlpkfo
Описание Epileptic Content Detection
Размер файла 99.04 KB
Количество установок 45
Текущая Версия 1.0.0
Последнее Обновление 2020-10-12
Дата публикации 2020-10-03
Рейтинг 3.50/5 Всего 2 оценок
Разработчик https://flikcerapp.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://flikcerapp.com
URL страницы помощи https://flikcerapp.com
Поддерживаемые языки 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"
        }
    }
}