Eye Protector

Eye Protector

Change background color to special eye-protective colors from list or to color which you prefer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Eye Protector",
  "version": "0.9",
  "description": "Change background color to special eye-protective colors from list or to color which you prefer.",
  "manifest_version": 2,
  "minimum_chrome_version": "31",
  "options_page": "views/settings.html",
  "background": {
    "scripts": [
      "scripts/scriptback.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_popup": "views/popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/engine.js"
      ]
    }
  ],
  "default_locale": "en"
}