护眼大师

护眼大师

护眼大师电脑版是一款电脑端视力保护软件,通过调整色温亮度的方式保护视力,护眼大师电脑版可以有效的过滤掉屏幕发出的蓝光降低其对眼球的伤害,深受白领办公室一族青睐,赶快下载体验吧!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "护眼大师",
  "version": "1.0.1.4",
  "manifest_version": 2,
  "description": "护眼大师电脑版是一款电脑端视力保护软件,通过调整色温亮度的方式保护视力,护眼大师电脑版可以有效的过滤掉屏幕发出的蓝光降低其对眼球的伤害,深受白领办公室一族青睐,赶快下载体验吧!",
  "icons": {
    "16": "logos/16.png",
    "48": "logos/48.png",
    "128": "logos/128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "logos/19.png",
      "38": "logos/38.png"
    },
    "default_title": "护眼大师",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "css/ext-main.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "management",
    "nativeMessaging"
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self'",
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "*"
  ],
  "default_locale": "zh_CN"
}