Meteor DevTools

Developer tools for Meteor

什么是Meteor DevTools?

Meteor DevTools是由The Bakery开发的Chrome扩展程序,该扩展的主要功能是“Developer tools for Meteor”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Meteor DevTools扩展crx文件

下载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
}