RxJS Insights

See through the observables

RxJS Insights क्या है?

RxJS Insights kszksz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See through the observables"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RxJS Insights एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        RxJS Insights is a toolset that helps you debug and visualize the observables in your app.

✨ Developer friendly: Easy to set up. Easy to use.
✨ Unobtrusive: Does not require source code modification.
✨ Comprehensive: Tracks all types of events and relations.

The data gathered by the RxJS Insights includes the information about:

• constructor calls, including the arguments passed to it, the name of the Observable (sub)class, and the source code location of the call,
• creation operator calls, including the arguments passed to it, the name of the operator, and the source code location of the call,
• pipeable operator calls, including the arguments passed to it, the name of the operator, and the source code location of the call,
• subscribers (i.e. the instances of the running observables), including the relation to the parent observable, as well as relations to other subscribers that are either sources or destinations of the given subscriber,
• callers (i.e. the connection with the world outside the RxJS, e.g. direct subscribe calls from the application), including the arguments passed to it, and the source code location of the call,
• events, including the notification events (i.e. next, error, and complete) and subscription events (i.e. subscribe and unsubscribe), as well as relations to other events that either caused or are caused by the given event,
• async tasks within which the events happened (e.g. setTimeout, setInterval, DOM events, REST events, etc.).

Learn more at https://github.com/ksz-ksz/rxjs-insights                    

एक्सटेंशन की मूल जानकारी

नाम RxJS Insights RxJS Insights
ID nndeaiihppbmgiejbpbpkohdhilffdgj
आधिकारिक URL https://chromewebstore.google.com/detail/rxjs-insights/nndeaiihppbmgiejbpbpkohdhilffdgj
विवरण See through the observables
फ़ाइल का आकार 1.38 MB
स्थापना संख्या 1,279
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2022-11-01
प्रकाशन तिथि 2022-08-17
रेटिंग 3.33/5 कुल 3 रेटिंग्स
डेवलपर kszksz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ksz-ksz/rxjs-insights
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.2",
    "name": "RxJS Insights",
    "description": "See through the observables",
    "icons": {
        "16": "icons\/rxjs-insights-16.png",
        "32": "icons\/rxjs-insights-32.png",
        "48": "icons\/rxjs-insights-48.png",
        "128": "icons\/rxjs-insights-128.png",
        "256": "icons\/rxjs-insights-256.png"
    },
    "homepage_url": "https:\/\/github.com\/ksz-ksz\/rxjs-insights",
    "permissions": [],
    "devtools_page": "devtools-page.html",
    "background": {
        "service_worker": "dist\/background-script.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/page-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}