Simpro Customer Portal Enhancements

Simpro Customer Portal Enhancements

Add additional functionality to the Simpro Customer Portal, including link directly to Job from the PPM Report

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "Logos/Logo16.png",
      "48": "Logos/Logo48.png",
      "128": "Logos/Logo128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.3.1.min.js",
        "jquery-ui.js",
        "ppmPopup.js"
      ],
      "matches": [
        "https://*.simprosuite.com/customer/reports.php?report=ppm"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "jquery-3.3.1.min.js",
        "jquery-ui.js",
        "JobSearchScreen.js"
      ],
      "matches": [
        "https://*.simprosuite.com/customer/jobs.php*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "jquery-3.3.1.min.js",
        "jquery-ui.js",
        "QuoteSearchScreen.js"
      ],
      "matches": [
        "https://*.simprosuite.com/customer/quotes.php*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "jquery-3.3.1.min.js",
        "jquery-ui.js",
        "BILink.js"
      ],
      "matches": [
        "https://*.simprosuite.com/customer/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "jquery-3.3.1.min.js",
        "jquery-ui.js",
        "options.js"
      ],
      "matches": [
        "https://*.simprosuite.com/customer/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Add additional functionality to the Simpro Customer Portal, including link directly to Job from the PPM Report",
  "icons": {
    "16": "Logos/Logo16.png",
    "48": "Logos/Logo48.png",
    "128": "Logos/Logo128.png"
  },
  "manifest_version": 3,
  "name": "Simpro Customer Portal Enhancements",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "version": "1.9",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "Logos/LoadingsimPRO.gif",
        "Logos/Loading.gif",
        "Logos/Logo128.png"
      ]
    }
  ]
}