Codecademy User Streaks

Codecademy User Streaks

Adds an additional bar to Codecademy User Profile pages to indicate best streaks.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Codecademy User Streaks",
  "description": "Adds an additional bar to Codecademy User Profile pages to indicate best streaks.",
  "version": "1.0.3",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "http://codecademy.com/"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery.min.js",
        "magic.js"
      ],
      "matches": [
        "http://www.codecademy.com/*",
        "https://www.codecademy.com/*"
      ]
    }
  ]
}