RxJS Devtools

RxJS DevTools extension for debugging streams

RxJS Devtools란 무엇입니까?

RxJS Devtools은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "RxJS DevTools extension for debugging streams"입니다.

확장 프로그램 스크린샷

screenshot

RxJS Devtools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
}