Extension for STEP 2020

Extension for STEP 2020

This is a Chrome extension for the participants of STEP 2020 development course.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Extension for STEP 2020",
  "manifest_version": 2,
  "version": "0.1",
  "description": "This is a Chrome extension for the participants of STEP 2020 development course.",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "stamp1.png",
    "stamp2.png",
    "stamp3.png"
  ]
}