Netvard Extension

Netvard Extension

Extension for online education at Netvard.com. The extension is intended to keep track of the progress you make on youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Netvard Extension",
  "description": "Extension for online education at Netvard.com. The extension is intended to keep track of the progress you make on youtube.",
  "version": "1.1.3",
  "icons": {
    "16": "./netvard-16x16.png",
    "32": "./netvard-32x32.png",
    "64": "./netvard-64x64.png",
    "128": "./icon-180.png"
  },
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*",
        "https://youtube.com/*",
        "https://www.netvard.com/*",
        "https://netvard.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "foreground.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://netvard.com/*",
    "tabs",
    "webNavigation",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}