Meteor DevTools Evolved

The Meteor framework development tool belt, evolved.

Meteor DevTools Evolvedคืออะไร?

Meteor DevTools Evolved เป็นส่วนขยายของ Chrome ที่พัฒนาโดย leonardoventurini และคุณลักษณะหลักของมันคือ "The Meteor framework development tool belt, evolved."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Meteor DevTools Evolved

ดาวน์โหลดไฟล์ส่วนขยาย Meteor DevTools Evolved ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Behold, the evolution of Meteor DevTools.

Harder, Better, Faster, Stronger. 🚀

Are you beginning with Meteor? Do you want to get a sense of "what is going on" or even to optimize your Meteor app? This is the tool for you.

- Distributed Data Protocol (DDP)

Everything you need to track and understand what is going on under the hood of your Meteor application. The extension allows you to filter and search for any DDP message, being able to handle thousands and thousands of messages without a hiccup.

- Bookmarks

The DDP inspection is ephemeral, but you can save as many DDP messages you want for later search and retrieval, from any host. Be careful though, it is saved on IndexedDB.

- Minimongo

You don't know what data belongs to where? You can rapidly search for anything in your Minimongo data and easily visualize the documents with our blazing fast custom-made Object Treerinator.

- Subscriptions

View all the subscriptions active in your current Meteor application.

- Performance

A way to see how long Minimongo operations take due to expensive logic or re-renders.


This is an open-source project, you can check the code anytime on GitHub. Any contribution or feedback would be very welcome. Let's make Meteor great again.

Follow our project on GitHub:

https://github.com/leonardoventurini/meteor-devtools-evolved                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Meteor DevTools Evolved Meteor DevTools Evolved
ID ibniinmoafhgbifjojidlagmggecmpgf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/meteor-devtools-evolved/ibniinmoafhgbifjojidlagmggecmpgf
คำอธิบาย The Meteor framework development tool belt, evolved.
ขนาดไฟล์ 1.32 MB
จำนวนการติดตั้ง 5,105
เวอร์ชันปัจจุบัน 1.8.1
อัปเดตครั้งล่าสุด 2023-01-30
วันที่เผยแพร่ 2020-06-28
คะแนน 4.80/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา leonardoventurini
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/leonardoventurini/meteor-devtools-evolved
URL หน้าช่วยเหลือ https://github.com/leonardoventurini/meteor-devtools-evolved/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Meteor DevTools Evolved",
    "description": "The Meteor framework development tool belt, evolved.",
    "version": "1.8.1",
    "author": "Leonardo Venturini",
    "icons": {
        "16": "icons\/meteor-16.png",
        "48": "icons\/meteor-48.png",
        "128": "icons\/meteor-128.png"
    },
    "action": {
        "default_title": "Meteor",
        "default_icon": "icons\/meteor-48.png"
    },
    "background": {
        "service_worker": "\/dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/dist\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "https:\/\/api.github.com\/*",
        "https:\/\/www.google-analytics.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/dist\/inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "devtools_page": "devtools.html"
}