Vision Сare - Take care of your eyes

Vision Сare - Take care of your eyes

Regularly reminds you to take a break. Blocks your browser during a break time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "short_name": "__MSG_app_short_name__",
  "description": "__MSG_app_description__",
  "version": "3.1.15",
  "default_locale": "en",
  "icons": {
    "16": "images/bar_eye-x16.png",
    "32": "images/bar_eye-x32.png",
    "48": "images/bar_eye-x48.png",
    "64": "images/bar_eye-x64.png",
    "128": "images/bar_eye-x128.png"
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/bar_eye-x19.png",
      "38": "images/bar_eye-x38.png"
    },
    "default_title": "__MSG_app_default_title__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "scripts/component/TakeABreakComponent.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "scripts/logoimg.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/training/*.png",
    "scripts/component/*.xml"
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ]
}