EE-Entry Filler

EE-Entry Filler

Mother and Children Entry With Excel Sheet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EE-Entry Filler",
  "description": "Mother and Children Entry With Excel Sheet",
  "version": "0.4.1",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon_48.png"
  },
  "permissions": [
    "management",
    "tabs",
    "storage",
    "identity",
    "identity.email",
    "https://www.googleapis.com/",
    "contextMenus",
    "https://eeprojectsapi.ctechhindi.in/",
    "unlimitedStorage"
  ],
  "oauth2": {
    "client_id": "31785199518-7qrckb06mffp2h3cc2b9ak1852f69es4.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://rch.nhm.gov.in/RCH/UI/EligibleCouples.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherDataEntry.aspx",
        "https://rch.nhm.gov.in/RCH/UI/TrackingEC.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherMedical.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherANC.aspx",
        "https://rch.nhm.gov.in/RCH/UI/ChildDataEntry.aspx",
        "https://rch.nhm.gov.in/RCH/UI/ChildDataEntry.aspx?Id_Edit=childEntry"
      ],
      "js": [
        "content/controller.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://rch.nhm.gov.in/RCH/UI/EligibleCouples.aspx",
        "https://rch.nhm.gov.in/RCH/UI/TrackingEC.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherDataEntry.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherMedical.aspx",
        "https://rch.nhm.gov.in/RCH/UI/MotherANC.aspx"
      ],
      "js": [
        "assets/js/jquery-1.8.3.min.js",
        "assets/js/lodash.min.js",
        "content/script_elc.js"
      ],
      "css": [
        "assets/css/jquery-ui.min.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://rch.nhm.gov.in/RCH/UI/ChildDataEntry.aspx",
        "https://rch.nhm.gov.in/RCH/UI/ChildDataEntry.aspx?Id_Edit=childEntry",
        "https://rch.nhm.gov.in/RCH/UI/ChildTrackingEntry.aspx"
      ],
      "js": [
        "assets/js/jquery-1.8.3.min.js",
        "assets/js/lodash.min.js",
        "content/script_ch.js"
      ],
      "css": [
        "assets/css/jquery-ui.min.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://rch.nhm.gov.in/RCH/UI/DirectDataEntry.aspx"
      ],
      "js": [
        "assets/js/jquery-1.8.3.min.js",
        "assets/js/lodash.min.js",
        "content/script_dde.js"
      ],
      "css": [
        "assets/css/jquery-ui.min.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://rch.nhm.gov.in/*"
      ],
      "js": [
        "content/script_setLoc.js",
        "content/scripts12.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content/copy_value_select.js",
        "assets/js/selector-generator.js"
      ]
    },
    {
      "matches": [
        "https://rch.nhm.gov.in/RCH/UI/SetLocation.aspx",
        "http://rch.nhm.gov.in/RCH/UI/SetLocation.aspx"
      ],
      "js": [
        "content/script_getLoc.js"
      ],
      "all_frames": true
    }
  ],
  "commands": {
    "start-stop-app": {
      "suggested_key": {
        "default": "Alt+E",
        "windows": "Alt+E"
      },
      "description": "Start/Pause Application",
      "global": true
    }
  },
  "options_ui": {
    "page": "donation/donation.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}