RxJS Devtools

RxJS DevTools extension for debugging streams

什麼是RxJS Devtools?

RxJS Devtools是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“RxJS DevTools extension for debugging streams”。

擴展截圖

screenshot

下載RxJS Devtools擴展crx文件

下載RxJS Devtools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This devtools extension allows you to debug your RxJS stream emissions by hooking into the rxjs-spy debugging library.

To use this in your application, you must first set up rxjs-spy and rxjs-spy-devtools-plugin (https://github.com/ardoq/rxjs-devtools/tree/master/packages/rxjs-spy-devtools-plugin) in your RxJS application, which allows the extension to hook into your RxJS streams and inspect stream values.

The project was inspired by rxjs-spy-devtools 

v0.0.3
- Simplified extension layout
- Improved warning and increased emission limit to 5000
- Added button to clear all recorded emissions

v0.0.2 
- Ability to filter observable tags
- Better performance
v0.0.1
- Initial version

Full changelog: https://github.com/ardoq/rxjs-devtools/commits/master

This extension is open-source - contributions and feedback are welcome! 
Github repository: https://github.com/ardoq/rxjs-devtools                    

擴展基本資訊

名稱 RxJS Devtools RxJS Devtools
ID abgkgpfkdkafjidfgcjddeffnfnkoeil
官方網址 https://chromewebstore.google.com/detail/rxjs-devtools/abgkgpfkdkafjidfgcjddeffnfnkoeil
簡介 RxJS DevTools extension for debugging streams
檔案大小 350 KB
安裝次數 2,301
目前版本 0.0.3
更新時間 2020-09-08
上架時間 2020-06-24
開發者 Unknown
付費類型 free
擴展官網 https://github.com/ardoq/rxjs-devtools
說明頁面URL https://github.com/ardoq/rxjs-devtools
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "RxJS DevTools extension for debugging streams",
    "version": "0.0.3",
    "name": "RxJS Devtools",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "devtools_page": "devtools.html",
    "icons": {
        "128": "rxjs-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "rxjs-logo.png",
        "rxjs-logo.png",
        "injectedScript.bundle.js"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}