Eye Protector

Eye Protector

修改网页的背景色与前景色,来保护您的眼睛与视力。自动给页面加上保护眼睛的豆沙绿色。浅绿色可以缓解长时间用眼疲劳。绿色眼睛的保护,来自Apple Green 苹果绿

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_popup": "popup.html"
  },
  "description": "修改网页的背景色与前景色,来保护您的眼睛与视力。自动给页面加上保护眼睛的豆沙绿色。浅绿色可以缓解长时间用眼疲劳。绿色眼睛的保护,来自Apple Green 苹果绿",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/utility.js",
        "js/main.js"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "http://*/*",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "browsingData",
    "*://*/*",
    "unlimitedStorage",
    "https://*/*",
    "contextMenus",
    "<all_urls>"
  ],
  "default_locale": "en",
  "name": "__MSG_extName__",
  "icons": {
    "16": "img/icon_38.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "version": "2.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}