Meteor DevTools

Developer tools for Meteor

Что такое Meteor DevTools?

Meteor DevTools - это расширение Chrome, разработанное The Bakery, и его основная функция - "Developer tools for Meteor".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Meteor DevTools is an extension for Chrome Developer Tools that makes the process of developing Meteor apps even more enjoyable. It also allows you to look under the hood of existing applications and learn how they are built. The extension includes a plugin framework and currently comes with 4 plugins: DDP Monitor, Blaze Inspector, MiniMongo Explorer and Security Auditor. The extension is open source and is available on Github - https://github.com/thebakeryio/meteor-devtools.                    

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

Название Meteor DevTools Meteor DevTools
ID ippapidnnboiophakmmhkdlchoccbgje
Официальный URL https://chromewebstore.google.com/detail/meteor-devtools/ippapidnnboiophakmmhkdlchoccbgje
Описание Developer tools for Meteor
Размер файла 430 KB
Количество установок 5,830
Текущая Версия 1.6.0
Последнее Обновление 2016-08-04
Дата публикации 2016-08-04
Рейтинг 4.40/5 Всего 43 оценок
Разработчик The Bakery
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/thebakeryio/meteor-devtools
URL страницы помощи https://github.com/thebakeryio/meteor-devtools/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meteor DevTools",
    "version": "1.6.0",
    "description": "Developer tools for Meteor",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; object-src 'self'",
    "devtools_page": "devtools.html",
    "options_page": "panel.html",
    "manifest_version": 2
}