Video Filter

Enhance your video color everywhere you watch! Just drag and drop any available filters, connect and tweak to make a magical result.

Что такое Video Filter?

Video Filter - это расширение Chrome, разработанное Ding Dong, и его основная функция - "Enhance your video color everywhere you watch! Just drag and drop any available filters, connect and tweak to make a magical result.".

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

screenshot
screenshot

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

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

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

                        Video Filter works everywhere: YouTube, Vimeo, Facebook, Netflix, HTML5 video and so on.
Available filters:
* brightness
* contrast
* gamma
* saturate
* grayscale
* sepia
* hue-rotate
* flood (SVG display on)
* image
* blur
* opacity
* blend
* composite
* merge
* morphology
* SVG-code

Keyboard shortcut (only when a video tag is active) :
* "NumpadMultiply" key to toggle on/off 
* "A"/"D" key to skip forward/backward video 5 seconds                    

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

Название Video Filter Video Filter
ID fmeihcjcpeiadlombalojgaikfmdobbl
Официальный URL https://chromewebstore.google.com/detail/video-filter/fmeihcjcpeiadlombalojgaikfmdobbl
Описание Enhance your video color everywhere you watch! Just drag and drop any available filters, connect and tweak to make a magical result.
Размер файла 37.41 KB
Количество установок 2,161
Текущая Версия 1.0.3
Последнее Обновление 2022-04-12
Дата публикации 2020-02-09
Рейтинг 4.74/5 Всего 43 оценок
Разработчик Ding Dong
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Filter",
    "description": "Enhance your video color everywhere you watch! Just drag and drop any available filters, connect and tweak to make a magical result.",
    "version": "1.0.3",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "ico\/x16.png",
        "48": "ico\/x48.png",
        "128": "ico\/x128.png"
    },
    "author": "DingDong",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "ico\/x16.png",
            "24": "ico\/x24.png",
            "32": "ico\/x32.png"
        },
        "default_title": "Video Filter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "manifest_version": 3
}