TaxAdda PMS

TaxAdda PMS

TaxAdda PMS allow to login into client's accounts on various portal like GST, Income Tax, TRACES, E-way Bill, MCA v2 & v3 and DGFT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TaxAdda PMS",
  "description": "TaxAdda PMS allow to login into client's accounts on various portal like GST, Income Tax, TRACES, E-way Bill, MCA v2 & v3 and DGFT",
  "author": "TaxAdda Private Limited",
  "version": "1.0.3",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "TaxAdda PMS",
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://pms.taxadda.com/*",
        "https://*.gst.gov.in/*/login",
        "https://*.gst.gov.in/*/newlogin",
        "https://*.incometax.gov.in/*",
        "https://web.whatsapp.com/",
        "https://*.ewaybillgst.gov.in/Login*",
        "https://*.ewaybillgst.gov.in/login*",
        "https://*.ewaybill.nic.in/Login*",
        "https://*.ewaybill.nic.in/login*",
        "https://*.tdscpc.gov.in/*/login*",
        "https://*.dgft.gov.in/CP/*",
        "https://*.mca.gov.in/*/login.*",
        "https://*.mca.gov.in/**/fologin.*"
      ],
      "js": [
        "scripts/main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://pms.taxadda.com/*",
        "https://*.gst.gov.in/*",
        "https://*.incometax.gov.in/*",
        "https://web.whatsapp.com/*",
        "https://*.ewaybillgst.gov.in/*",
        "https://*.ewaybill.nic.in/*",
        "https://*.tdscpc.gov.in/*",
        "https://*.dgft.gov.in/*",
        "https://*.mca.gov.in/*"
      ],
      "resources": [
        "images/**"
      ]
    }
  ],
  "host_permissions": [
    "https://pms.taxadda.com/*",
    "https://*.gst.gov.in/*",
    "https://*.incometax.gov.in/*",
    "https://web.whatsapp.com/",
    "https://*.ewaybillgst.gov.in/*",
    "https://*.ewaybill.nic.in/*",
    "https://*.tdscpc.gov.in/*",
    "https://*.dgft.gov.in/*",
    "https://*.mca.gov.in/*"
  ],
  "permissions": [
    "tabs",
    "notifications",
    "storage"
  ]
}