Learn-RxJs

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

¿Qué es Learn-RxJs?

Learn-RxJs es una extensión de Chrome desarrollada por Sreekanth Reddy Pathi Reddy, y su función principal es "A browser extension that will remind and teach you an RxJs operator a day.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Learn-RxJs

Descarga archivos de extensión Learn-RxJs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        RxJs is a Javascript library for reactive programming using observables that makes it easier to compose asynchronous or callback-based code. Developer life will be so easy with this library and makes code clean and crisp. It has lot of operators and requires a steady process to get hold of them. This browser extension helps you learn all operator by reminding you everyday and sends your way a new RxJs operator to learn. It provides examples to understand each operator clearly and also compares different operators where required to differentiate. Learn at your own pace by navigating to next and previous operators. You can also use this extension to search and find any operator for quick reference. Also find Stackblitz link to each operator to play with the operator. All operators are consolidated under a single Stackblitz project to quickly access any operator and play with them.                    

Información Básica de la Extensión

Nombre Learn-RxJs Learn-RxJs
ID kegaojpfbgbhmpigpejnobophefcmmom
URL Oficial https://chromewebstore.google.com/detail/learn-rxjs/kegaojpfbgbhmpigpejnobophefcmmom
Descripción A browser extension that will remind and teach you an RxJs operator a day.
Tamaño del Archivo 400 KB
Cantidad de Instalaciones 155
Versión Actual 1.0.3
Última Actualización 2020-06-18
Fecha de Publicación 2020-06-18
Desarrollador Sreekanth Reddy Pathi Reddy
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
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"
    }
}