RxJS Insights

RxJS Insights

See through the observables

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "dist/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/page-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}