Improved To Do Page For Google Classroom™

Improved To Do Page For Google Classroom™

Mark you assignments as done without having to open them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Improved To Do Page For Google Classroom™",
  "short_name": "Improved To Do Page For Google Classroom™",
  "description": "Mark you assignments as done without having to open them",
  "version": "3.21",
  "browser_action": {
    "default_icon": "images/icon96.png"
  },
  "icons": {
    "32": "images/icon32.png",
    "36": "images/icon36.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "96": "images/icon96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://classroom.google.com/*"
      ],
      "js": [
        "libraries/jquery/jquery-3.2.1.min.js",
        "scripts/addMarkAsDoneButtons.js"
      ],
      "css": [
        "html/customStyles.css"
      ]
    },
    {
      "matches": [
        "https://classroom.google.com/*/a/*/details"
      ],
      "js": [
        "libraries/jquery/jquery-3.2.1.min.js",
        "scripts/markAsDone.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "https://classroom.google.com/*"
  ],
  "web_accessible_resources": [
    "html/markAsDoneButton.html"
  ]
}