StudyIsland.com Button Helper

StudyIsland.com Button Helper

Hide 4th and 5th Grade Buttons For StudyIsland.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "StudyIsland.com Button Helper",
  "version": "1.0",
  "description": "Hide 4th and 5th Grade Buttons For StudyIsland.com.",
  "content_scripts": [
    {
      "matches": [
        "https://*.studyisland.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "jaguar.png",
    "default_title": "StudyIsland.com Button Helper"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2
}