zyBoost

zyBoost

Boosts the efficiency of zyBook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "zyBoost",
  "description": "Boosts the efficiency of zyBook",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://learn.zybooks.com/zybook/*"
      ],
      "css": [
        "app.css"
      ],
      "js": [
        "app.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js"
  ]
}