Meteor DevTools

Developer tools for Meteor

Cos'è Meteor DevTools?

Meteor DevTools è un'estensione di Chrome sviluppata da The Bakery, e la sua funzione principale è "Developer tools for Meteor".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Meteor DevTools

Scarica i file di estensione Meteor DevTools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Meteor DevTools Meteor DevTools
ID ippapidnnboiophakmmhkdlchoccbgje
URL Ufficiale https://chromewebstore.google.com/detail/meteor-devtools/ippapidnnboiophakmmhkdlchoccbgje
Descrizione Developer tools for Meteor
Dimensione del File 430 KB
Conteggio Installazioni 5,830
Versione Corrente 1.6.0
Ultimo Aggiornamento 2016-08-04
Data di Pubblicazione 2016-08-04
Valutazione 4.40/5 Totale 43 Valutazioni
Sviluppatore The Bakery
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/thebakeryio/meteor-devtools
URL della Pagina di Aiuto https://github.com/thebakeryio/meteor-devtools/issues
Lingue Supportate 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
}