Learn Issues

Learn Issues

A chrome browser extension to show open github issues for the current Learn.co lesson

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Learn Issues",
  "description": "A chrome browser extension to show open github issues for the current Learn.co lesson",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://learn.co/tracks/*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webNavigation"
  ]
}