Truck Minder

Truck Minder

Truck Minder is a chrome extension designed for carriers who use the DAT platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Truck Minder",
  "description": "Truck Minder is a chrome extension designed for carriers who use the DAT platform",
  "version": "1.0.5",
  "author": "[email protected]",
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "libs/toastify.js",
        "libs/popper.js",
        "libs/tippy.js",
        "content/index.js"
      ],
      "css": [
        "content/toastify.min.css",
        "content/sendEmail.css",
        "content/tippy.css"
      ],
      "matches": [
        "https://power.dat.com/search*",
        "https://power.dat.com/postings/trucks*",
        "https://one.dat.com/search-loads-ow*",
        "https://one.dat.com/my-trucks/posting-details/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "content/auth.js"
      ],
      "matches": [
        "https://extension.eoglobal.uz/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content/sendEmail.css",
        "content/tippy.css"
      ],
      "matches": [
        "https://power.dat.com/*",
        "https://one.dat.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16x16.png",
    "32": "icons/icon-32x32.png",
    "48": "icons/icon-192x192.png",
    "128": "icons/icon-192x192.png"
  }
}