Learn-RxJs

Learn-RxJs

A browser extension that will remind and teach you an RxJs operator a day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Learn-RxJs",
  "version": "1.0.3",
  "description": "A browser extension that will remind and teach you an RxJs operator a day.",
  "manifest_version": 2,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background-es2015.js",
      "runtime-es2015.js"
    ]
  },
  "browser_action": {
    "default_popup": "index.html"
  }
}