20/20/20 Vision

20/20/20 Vision

20/20/20 Vision is a chrome extension that simply just reminds you to give your eyes a break from your computer screen as per the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "20/20/20 Vision",
  "version": "0.3",
  "icons": {
    "19": "res/20VisionIcon.png",
    "128": "res/20Vision_128.png"
  },
  "background": {
    "page": "background/bg.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "lib/jquery/jquery-3.3.1.slim.min.js",
        "content/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "res/20VisionIcon.png",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ]
}