Find Loads

Find Loads

This extension will find loads on navispherecarrier.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Find Loads",
  "short_name": "Find Loads",
  "version": "1.5",
  "manifest_version": 2,
  "description": "This extension will find loads on navispherecarrier.com.",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_popup": "src/browser_action/browser_action.html",
    "default_icon": "icons/icon.png",
    "default_title": "Find Loads"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.navispherecarrier.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "*://*.navispherecarrier.com/*",
    "https://api.gumroad.com/v2/licenses/verify"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.min.js",
      "src/bg/background.js"
    ]
  },
  "web_accessible_resources": [
    "icons/icon.png",
    "sounds/not.mp3"
  ]
}