NPTEL Condenser

NPTEL Condenser

A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NPTEL Condenser",
  "description": "A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets.",
  "version": "0.6.8",
  "permissions": [
    "storage",
    "https://gist.githubusercontent.com/*",
    "downloads"
  ],
  "minimum_chrome_version": "31",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "js/jquery-2.1.3.min.js",
    "js/main.js",
    "icons/*.png"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_title": "NPTEL Lite",
    "default_popup": "views/popup.html"
  },
  "manifest_version": 2,
  "author": "Ashris Choudhury"
}