Productivity InFocus

Productivity InFocus

Productivity InFocus will be your buddy looking out for you when you get off task.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Productivity InFocus",
  "version": "1.1.1",
  "options_page": "options.html",
  "web_accessible_resources": [
    "img/black.png"
  ],
  "description": "Productivity InFocus will be your buddy looking out for you when you get off task.",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/youtube_video.js",
        "js/youtube_home.js"
      ],
      "css": [
        "css/modal.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/api/quote.js",
        "js/fb.js"
      ],
      "css": [
        "css/fbmodal.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/on.png",
    "default_title": "Productivity InFocus",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img/icon128.png"
  }
}