AP® Score Hider

AP® Score Hider

Hides AP® Exam scores on the College Board website until clicked on, plays sounds, & displays confetti if they're passing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AP® Score Hider",
  "version": "1.0.0",
  "description": "Hides AP® Exam scores on the College Board website until clicked on, plays sounds, & displays confetti if they're passing.",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://apstudents.collegeboard.org/view-scores*"
      ],
      "js": [
        "confetti.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png",
    "512": "icons/512.png"
  },
  "action": {},
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "iframe/*"
      ],
      "matches": [
        "https://apstudents.collegeboard.org/*"
      ]
    }
  ]
}