AvJuicy Plugin

It converts all embeded videos to native player format.

Что такое AvJuicy Plugin?

AvJuicy Plugin - это расширение Chrome, разработанное dirtypetter, и его основная функция - "It converts all embeded videos to native player format.".

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

screenshot
screenshot

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

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

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

                        此應用程式可去除avjuicy.com影片的廣告,並切換為原生影片播放器,大大提高用戶體驗。
It converts all embeded videos in avjuicy.com into native video player format.(for: avjuicy.com)                    

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

Название AvJuicy Plugin AvJuicy Plugin
ID mnbcgpppofgjgpgeppkajimgneblhkej
Официальный URL https://chromewebstore.google.com/detail/avjuicy-plugin/mnbcgpppofgjgpgeppkajimgneblhkej
Описание It converts all embeded videos to native player format.
Размер файла 15.46 KB
Количество установок 24
Текущая Версия 1.0.4
Последнее Обновление 2018-07-30
Дата публикации 2018-07-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик dirtypetter
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AvJuicy Plugin",
    "description": "It converts all embeded videos to native player format.",
    "version": "1.0.4",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "execute.js"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "sub.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ]
}