Quizzy by STEMTaught

Quizzy by STEMTaught

Test your knowledge of the Next Generation Science Standards (NGSS).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quizzy by STEMTaught",
  "description": "Test your knowledge of the Next Generation Science Standards (NGSS).",
  "version": "0.0.0.2",
  "icons": {
    "128": "images/128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ],
      "css": [
        "src/main.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/48.png",
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    "images/*.gif",
    "grades/*.json",
    "src/*.json",
    "msgJson/*.json",
    "src/*.js",
    "src/*.css",
    "popup/*",
    "bootstrap/*",
    "json/*.json"
  ]
}