BDRIS Reporting Tool

Easy tool for generating monthly birth and death registration reports
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BDRIS Reporting Tool",
  "version": "1.7.4.62",
  "description": "Easy tool for generating monthly birth and death registration reports",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "*://*.bdris.gov.bd/*",
        "*://*.mygov.bd/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "alarms"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/images/icon16.png",
      "48": "assets/images/icon48.png",
      "128": "assets/images/icon128.png"
    }
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bdris.gov.bd/*",
        "*://*.mygov.bd/*",
        "*://services.nidw.gov.bd/nid-pub/citizen-home/*"
      ],
      "js": [
        "assets/js/jquery.min.js",
        "assets/js/bootstrap.min.js",
        "assets/js/popper.min.js",
        "assets/js/select2.full.min.js",
        "functionality.js",
        "content.js"
      ],
      "css": [
        "assets/css/select2.min.css",
        "assets/css/styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}