nOverlay

nOverlay

Tints the web pages you visit without the need for an overlay

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "nOverlay",
  "description": "Tints the web pages you visit without the need for an overlay",
  "version": "1.1.2.1",
  "minimum_chrome_version": "28",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "noverlay_core/default_profiles.js",
      "noverlay_chrome/events.chrome.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "overlay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "scripts/jquery-1.11.1.min.js",
        "noverlay_core/default_profiles.js",
        "noverlay_chrome/settings.chrome.js",
        "noverlay_core/noverlay.core.js",
        "noverlay_chrome/noverlay.chrome.js"
      ],
      "css": [
        "styles/opendyslexic.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "fonts/ttf/OpenDyslexic-Regular.ttf",
    "fonts/ttf/OpenDyslexicMono-Regular.ttf"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "activeTab",
    "notifications"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_48.png",
    "default_popup": "popup.html",
    "default_title": "nOverlay - click for details"
  }
}