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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}