AllMyCourses

AllMyCourses

Organize, view & track All Your Courses from each of your learning platforms, in one central place.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AllMyCourses",
  "description": "Organize, view & track All Your Courses from each of your learning platforms, in one central place.",
  "version": "1.1.4",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "action": {
    "default_title": "AllMyCourses",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fg.js",
        "popup/popup.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}