Eye Blinker

Eye Blinker

A Chrome extension that helps you to follow the 20-20-20 rule

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Eye Blinker",
  "short_name": "Eye Blinker",
  "author": "Muhsin.K",
  "version": "0.0.5",
  "description": "A Chrome extension that helps you to follow the 20-20-20 rule",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Eye Blinker",
    "default_icon": "icons/icon.png"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "notifications",
    "storage",
    "idle"
  ],
  "background": {
    "scripts": [
      "app/background.js"
    ],
    "persistent": true
  }
}