Udemy Coupons & Free Courses

Udemy Coupons & Free Courses

Get Live Udemy Discount and Promo Codes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Udemy Coupons & Free Courses",
  "description": "Get Live Udemy Discount and Promo Codes.",
  "version": "1.0.2",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.udemy.com/*",
        "*://*.couponfollow.com/site/udemy.com"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/128.png",
      "32": "img/128.png",
      "48": "img/128.png",
      "64": "img/128.png",
      "128": "img/128.png"
    }
  },
  "icons": {
    "16": "img/128.png",
    "32": "img/128.png",
    "48": "img/128.png",
    "64": "img/128.png",
    "128": "img/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "visual/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "*://*.couponfollow.com/site/udemy.com",
    "*://*.udemy.com/*",
    "webRequest",
    "webRequestBlocking"
  ]
}