Thinkful

Thinkful

Access Thinkful courses easily and enable screensharing support in mentor sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Thinkful",
  "author": "Thinkful, Inc.",
  "homepage_url": "http://www.thinkful.com/",
  "version": "1.8",
  "minimum_chrome_version": "34",
  "description": "Access Thinkful courses easily and enable screensharing support in mentor sessions.",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "desktopCapture",
    "cookies",
    "*://*.thinkful.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.thinkful.com/*",
      "*://t.ful/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*.thinkful.com/*",
        "*://t.ful/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background/global.js",
      "js/background/app.js",
      "js/background/screensharing.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Thinkful"
  }
}