RCH Manager

RCH Manager

This is for RCH operator, It take data from excel and fill on website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RCH Manager",
  "description": "This is for RCH operator, It take data from excel and fill on website ",
  "manifest_version": 3,
  "version": "2.2.5",
  "content_scripts": [
    {
      "matches": [
        "https://rch.mohfw.gov.in/RCH/Login.aspx",
        "https://rchrpt.mohfw.gov.in/RCHRPT/Login.aspx"
      ],
      "run_at": "document_start",
      "js": [
        "jquery.min.js",
        "login.js"
      ]
    },
    {
      "matches": [
        "https://rch.mohfw.gov.in/*"
      ],
      "run_at": "document_start",
      "js": [
        "common_function.js",
        "motherUp.js",
        "child.js",
        "childUp.js",
        "page.js"
      ]
    },
    {
      "matches": [
        "https://rch.mohfw.gov.in/RCH/UI/SetLocation.aspx",
        "https://rch.mohfw.gov.in/RCH/UI/DataEntry.aspx"
      ],
      "run_at": "document_start",
      "js": [
        "SetLocation.js"
      ]
    },
    {
      "matches": [
        "https://rch.mohfw.gov.in/RCH/UI/AnmAshaSearch.aspx/*"
      ],
      "run_at": "document_end",
      "js": [
        "common_function.js",
        "collectAsha.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "payment.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "child_setting.js",
        "child_setting.html",
        "mother_setting.html",
        "mother_setting.js",
        "options.html",
        "options.js",
        "checkout.js",
        "inject.js",
        "firebase/firebase-app.js",
        "firebase/firebase-auth.js",
        "firebase/firebase-database.js",
        "childForm.html",
        "motherForm.html",
        "logo.html",
        "motherUp.js",
        "SetLocation.js",
        "common_function.js",
        "login.js",
        "jquery.min.js",
        "collectAsha.js"
      ],
      "matches": [
        "https://rch.mohfw.gov.in/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "unlimitedStorage",
    "identity",
    "storage",
    "identity.email",
    "notifications"
  ]
}