Meteor DevTools

Developer tools for Meteor

Co to jest Meteor DevTools?

Meteor DevTools to rozszerzenie Chrome opracowane przez The Bakery, a jego główną funkcją jest „Developer tools for Meteor”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Meteor DevTools

Pobierz pliki rozszerzeń Meteor DevTools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Meteor DevTools Meteor DevTools
ID ippapidnnboiophakmmhkdlchoccbgje
Oficjalny URL https://chromewebstore.google.com/detail/meteor-devtools/ippapidnnboiophakmmhkdlchoccbgje
Opis Developer tools for Meteor
Rozmiar pliku 430 KB
Liczba instalacji 5,830
Aktualna Wersja 1.6.0
Ostatnia Aktualizacja 2016-08-04
Data Publikacji 2016-08-04
Ocena 4.40/5 Łącznie 43 Oceny
Deweloper The Bakery
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/thebakeryio/meteor-devtools
Adres URL Strony Pomocy https://github.com/thebakeryio/meteor-devtools/issues
Obsługiwane Języki 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
}