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
官方網址 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
}