uLaw Toolbox

uLaw Toolbox

uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "uLaw Toolbox",
  "description": "uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST",
  "version": "1.0.12",
  "icons": {
    "128": "128x128uLawAppicon.png"
  },
  "action": {
    "default_icon": "19x19uLawAppicon.png",
    "default_popup": "uLawLauncher.html"
  },
  "host_permissions": [
    "https://api.ulaw.io/"
  ],
  "permissions": [
    "alarms",
    "background",
    "notifications",
    "storage"
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://outlook.live.com/*",
        "*://outlook.office.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "jquery.js",
        "outlook.js"
      ]
    },
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ]
}