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
Eメール [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
}