HLS + MPEG-DASH Manifest File Viewer

View HLS (m3u8) or MPEG-DASH (mpd) manifest files with syntax highlighting in your Chrome browser.

Что такое HLS + MPEG-DASH Manifest File Viewer?

HLS + MPEG-DASH Manifest File Viewer - это расширение Chrome, разработанное nick, и его основная функция - "View HLS (m3u8) or MPEG-DASH (mpd) manifest files with syntax highlighting in your Chrome browser.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения HLS + MPEG-DASH Manifest File Viewer

Скачайте файлы расширений HLS + MPEG-DASH Manifest File Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Avoid having to download the manifest file and then open in a text editor just to view it.

The extension works by blocking the download when the manifest is requested as the main url and then parses and displays it. Some syntax highlighting and definition links to the ietf.org draft documentation. To download the manifest file, click on the source url at the top of the page. Resources are linked in the manifest to make it easy to test the different parts.                    

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

Название HLS + MPEG-DASH Manifest File Viewer HLS + MPEG-DASH Manifest File Viewer
ID bogfghabiokccffmhopfppcmkpcemnjo
Официальный URL https://chrome.google.com/webstore/detail/hls-+-mpeg-dash-manifest/bogfghabiokccffmhopfppcmkpcemnjo
Описание View HLS (m3u8) or MPEG-DASH (mpd) manifest files with syntax highlighting in your Chrome browser.
Размер файла 55.36 KB
Количество установок 2,000
Текущая Версия 1.0.0
Последнее Обновление 2020-11-16
Дата публикации 2020-11-16
Рейтинг 4.00/5 Всего 4 оценок
Разработчик nick
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/krzemienski/abr-manifest-viewer-chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "View HLS (m3u8) or MPEG-DASH (mpd) manifest files with syntax highlighting in your Chrome browser.",
    "icons": {
        "128": "images\/hls.png"
    },
    "manifest_version": 2,
    "name": "HLS + MPEG-DASH Manifest File Viewer",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*.m3u8*",
        "*:\/\/*\/*.mpd*"
    ],
    "version": "1.0.0"
}