It's themes!

It's themes!

Change the look of It's Learning!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "It's themes!",
  "description": "Change the look of It's Learning!",
  "version": "1.3.1",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.itslearning.com/*",
        "https://*.itslearning.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "onload.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "https://ajax.googleapis.com/",
    "http://*.itslearning.com/*",
    "https://*.itslearning.com/*"
  ]
}