Datadog Cycle

An extension to cycle through datadog graphs on a dashboard

Что такое Datadog Cycle?

Datadog Cycle - это расширение Chrome, разработанное Wan Song, и его основная функция - "An extension to cycle through datadog graphs on a dashboard".

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

screenshot
screenshot

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

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

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

                        Enables cycling through full screen Datadog graphs and metrics.
Great for displaying Datadog data on a large screen.

Instructions for use:
Click start to cycle through all graphs on a dashboard.
Click stop to stop cycling.

Limitations:
Recommended for use on screens wider that 1280px.

Changelog:

1.0.3
- Force play state to keep graph up to date

1.0.2
- Fix refresh cycle too short for fullscreen update

1.0.1
- Added selection of graphs for cycling

1.0.0
- Initial release                    

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

Название Datadog Cycle Datadog Cycle
ID ajnlgopclpgdglnholecdpfiffmponjj
Официальный URL https://chromewebstore.google.com/detail/datadog-cycle/ajnlgopclpgdglnholecdpfiffmponjj
Описание An extension to cycle through datadog graphs on a dashboard
Размер файла 14.69 KB
Количество установок 20
Текущая Версия 1.0.3
Последнее Обновление 2015-12-16
Дата публикации 2015-12-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Wan Song
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Datadog Cycle",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "An extension to cycle through datadog graphs on a dashboard",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.datadoghq.com\/dash\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}