Homework Solver by College Tools

Homework Solver by College Tools

Homework Solver that integrates with any website or learning management system.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Homework Solver by College Tools",
  "description": "Homework Solver that integrates with any website or learning management system.",
  "author": "collegetools.io",
  "version": "2.2.8",
  "icons": {
    "128": "enabled.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "cookies",
    "webNavigation",
    "contextMenus"
  ],
  "commands": {
    "ct_keyboard_take_screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+1",
        "mac": "Alt+Shift+1"
      },
      "description": "Take screenshot"
    }
  },
  "host_permissions": [
    "*://www.collegetools.io/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "pages/popup.html",
    "default_title": "College Tools"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.mheducation.com/*",
        "*://*.cengage.com/*",
        "*://*.macmillanlearning.com/*",
        "*://*.pearson.com/*"
      ],
      "css": [
        "content-styles.css"
      ],
      "js": [
        "contentscript.js",
        "jquery-3.1.1.min.js"
      ],
      "run_at": "document_idle",
      "match_about_blank": true,
      "all_frames": true
    }
  ]
}