Students test helper

Students test helper

Students test helper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Students test helper",
  "description": "Students test helper",
  "version": "2.0.0",
  "permissions": [
    "https://elearn.nubip.edu.ua/*",
    "https://stormy-refuge-88605.herokuapp.com/*"
  ],
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://elearn.nubip.edu.ua/*"
      ],
      "run_at": "document_idle",
      "js": [
        "DBWorker.js",
        "content.js"
      ]
    }
  ]
}