ByeClicker

ByeClicker

ByeClicker is a Chrome extension that automatically answers iClicker questions for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ByeClicker",
  "version": "4.0",
  "description": "ByeClicker is a Chrome extension that automatically answers iClicker questions for you.",
  "author": "Vaibhav Sharma",
  "homepage_url": "https://chromewebstore.google.com/detail/byeclicker/kmnlnlkcacgjkngggifcnalkldgpflic",
  "manifest_version": 3,
  "action": {
    "default_title": "ByeClicker",
    "default_popup": "popup.html",
    "default_icon": "./assets/logo.png"
  },
  "icons": {
    "16": "./assets/logo-16.png",
    "32": "./assets/logo-32.png",
    "48": "./assets/logo-48.png",
    "128": "./assets/logo-128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://student.iclicker.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://student.iclicker.com/"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "./background.js"
  }
}