edclub-chrome-extension

edclub-chrome-extension

Add shortcuts to edclub.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "edclub-chrome-extension",
  "version": "0.1.0",
  "description": "Add shortcuts to edclub.com",
  "homepage_url": "https://github.com/MarlonPassos-git/edclub-chrome-extension",
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "32": "icon.png"
    },
    "default_title": "edclub chrome extension"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.ts-loader-a6c29071.js"
      ],
      "matches": [
        "https://www.edclub.com/*"
      ]
    }
  ],
  "commands": {
    "reloadLesson": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "windows": "Ctrl+Space"
      },
      "description": "reload typing learning lesson"
    }
  },
  "icons": {
    "256": "icon.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.edclub.com/*"
      ],
      "resources": [
        "assets/constants-9b53a7fc.js",
        "assets/content.ts-c40e5faf.js"
      ],
      "use_dynamic_url": true
    }
  ]
}