Tenafly GPA Calculator

Tenafly GPA Calculator

This thing calculates your gpa.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tenafly GPA Calculator",
  "description": "This thing calculates your gpa.",
  "version": "13.37",
  "content_scripts": [
    {
      "matches": [
        "https://parents.tenafly.k12.nj.us/*"
      ],
      "js": [
        "jquery.js",
        "background.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/"
  ]
}