Meteor DevTools

Developer tools for Meteor

Was ist Meteor DevTools?

Meteor DevTools ist eine Chrome-Erweiterung, die von The Bakery entwickelt wurde, und ihr Hauptmerkmal ist "Developer tools for Meteor".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Meteor DevTools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Meteor DevTools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Meteor DevTools Meteor DevTools
ID ippapidnnboiophakmmhkdlchoccbgje
Offizielle URL https://chromewebstore.google.com/detail/meteor-devtools/ippapidnnboiophakmmhkdlchoccbgje
Beschreibung Developer tools for Meteor
Dateigröße 430 KB
Installationsanzahl 5,830
Aktuelle Version 1.6.0
Letztes Update 2016-08-04
Veröffentlichungsdatum 2016-08-04
Bewertung 4.40/5 Insgesamt 43 Bewertungen
Entwickler The Bakery
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/thebakeryio/meteor-devtools
Hilfeseite URL https://github.com/thebakeryio/meteor-devtools/issues
Unterstützte Sprachen 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
}