Coursera Searcher

Coursera Searcher

This extension allows full text search of coursera on pages that end with /lecture

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Coursera Searcher",
  "version": "1.0.9",
  "manifest_version": 2,
  "description": "This extension allows full text search of coursera on pages that end with /lecture",
  "homepage_url": "https://github.com/hsingh23/coursera-full-text-search",
  "icons": {
    "128": "icons/search.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://class.coursera.org/*/lecture"
      ],
      "js": [
        "coursera-fts.lib.js",
        "coursera-fts.js"
      ]
    }
  ]
}