Gradelicious

Gradelicious

Gradelicious Extension for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "web_accessible_resources": [
    "favicon.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "gl-x.css"
      ],
      "js": [
        "jquery.js",
        "script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "description": "Gradelicious Extension for Chrome",
  "name": "Gradelicious",
  "permissions": [
    "https://gradelicious/*",
    "storage"
  ],
  "short_name": "Gradelicious",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "38": "icon38.png"
    },
    "default_title": "Gradelicious - The Best Way To Grade",
    "default_popup": "popup.html"
  },
  "version": "2.0.4"
}