LearnFaster

LearnFaster

Enhancement suite for the Learn VLE

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LearnFaster",
  "version": "4.0.3",
  "description": "Enhancement suite for the Learn VLE",
  "options_page": "info.html",
  "author": "Matthew Robinson <[email protected]>",
  "short_name": "LearnFaster",
  "icons": {
    "128": "Search_icon_small.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "worker_proxy.js",
        "fontawesome.js",
        "stickymenu.js",
        "localforage.js"
      ],
      "matches": [
        "https://www.learn.ed.ac.uk/*"
      ]
    },
    {
      "js": [
        "animals.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "info.js"
      ],
      "matches": [
        "http://*/info.html"
      ]
    }
  ],
  "background": {
    "scripts": [
      "worker_proxy.js",
      "background.js",
      "stickymenu.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "content.js",
    "content2.js",
    "fontawesome.js",
    "info.js",
    "localforage.js",
    "searchWorker.js",
    "stickymenu.js",
    "styles.css",
    "uoe_learn.png",
    "search_icon_stroke_small.png",
    "worker_proxy.html"
  ],
  "browser_action": {
    "default_icon": "Search_icon_small.png"
  }
}