Classcraft for Google Classroom

Classcraft for Google Classroom

Motivate students with Google Classroom using Classcraft

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Classcraft for Google Classroom",
  "version": "1.0.2",
  "description": "Motivate students with Google Classroom using Classcraft",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://classroom.google.com/*"
      ],
      "css": [
        "classroom/style.css"
      ],
      "js": [
        "bootstrap.js"
      ]
    }
  ],
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "page_action": {
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://*.classcraft.com/*"
  ],
  "web_accessible_resources": [
    "classroom/*",
    "config.js"
  ]
}