Optotax Assistant

Optotax Assistant

Browser extension for Optotax

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Optotax Assistant",
  "description": "Browser extension for Optotax",
  "version": "0.9.0",
  "applications": {
    "gecko": {
      "id": "{71ecc273-2e22-57d9-82ff-76c98dc1b422}"
    }
  },
  "browser_action": {
    "default_icon": "resources/buttercup-256.png",
    "default_popup": "popup.html#/"
  },
  "icons": {
    "16": "resources/buttercup-16.png",
    "48": "resources/buttercup-48.png",
    "128": "resources/buttercup-128.png",
    "256": "resources/buttercup-256.png"
  },
  "background": {
    "scripts": [
      "vendors-background-popup-setup-tab.js",
      "vendors-background-dialog-popup-setup.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "vendors-dialog-tab.js",
        "vendors-background-popup-setup-tab.js",
        "tab.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "https://services.gst.gov.in/services/authenticate",
    "storage",
    "unlimitedStorage"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.optotax.com/*",
      "*://localhost:*/*"
    ]
  },
  "commands": {
    "login-with-first-credentials": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Login using first matching credentials"
    }
  },
  "web_accessible_resources": [
    "dialog.html",
    "resources/*",
    "setup.html"
  ]
}