Pervasive GRE

Pervasive GRE

Highlight GRE vocabulary on any webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Pervasive GRE",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Highlight GRE vocabulary on any webpage.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background_page": "background.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "css": [
        "/assets/base.css",
        "/assets/hint.min.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "/dictionaries/*"
  ]
}