iSAMS XLS Reports to Sheets

iSAMS XLS Reports to Sheets

This extension allows iSAMS lists to be directly opened into a browser window (rather than downloaded)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iSAMS XLS Reports to Sheets",
  "short_name": "iSAMS Sheets",
  "description": "This extension allows iSAMS lists to be directly opened into a browser window (rather than downloaded)",
  "version": "1.1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "https://*.isams.cloud/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.isams.cloud/modules/teachingmanager/wizards/listswizard*",
        "https://*.isams.cloud/legacy/modules/teachingmanager/wizards/listswizard*",
        "https://*.isams.cloud/Legacy/system/common/nicedownload*",
        "https://*.isams.cloud/modules/timetablemanager/wizards/spreadsheetwizard*",
        "https://*.isams.cloud/modules/schoolmanagement/wizard/schoolwizard*",
        "https://*.isams.cloud/modules/examinationsmanager/results/reports/gradematrix*",
        "https://*.isams.cloud/modules/examinationsmanager/results/reports/totalsmatrix*",
        "https://*.isams.cloud/legacy/system/framework/desktop.asp",
        "https://*.isams.cloud/modules/dailybulletin/bulletin/bulletinlist*",
        "https://*.isams.cloud/legacy/system/dashboard*",
        "https://*.isams.cloud/modules/pupilprofiles/profile/index*",
        "https://*.isams.cloud/modules/pupilprofiles/search/index.asp",
        "https://*.isams.cloud/modules/pupilprofiles/pupilprofiles.asp",
        "https://*.isams.cloud/modules/senmanager/register/list.asp*"
      ],
      "all_frames": true,
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "open.js",
    "FileSaver.js"
  ]
}