Skillco Sync

Skillco Sync

A tool that syncs your university transcripts with Skillco.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Skillco Sync",
  "version": "1.0.8",
  "description": "A tool that syncs your university transcripts with Skillco.net",
  "manifest_version": 3,
  "author": "Jackson Lohman",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Skillco Sync"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "96": "favicon.ico"
  },
  "content_scripts": [
    {
      "matches": [
        "https://userve.uvu.edu/*"
      ],
      "js": [
        "uvu.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://skillco.net/skillco/extension/"
      ],
      "js": [
        "skillco.js"
      ],
      "run_at": "document_idle"
    }
  ]
}