LazyDonor

LazyDonor

Block selected websites for an hour to increase productivity. Donate $1 to charity to unblock a site before the hour is up.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LazyDonor",
  "version": "1.0.5",
  "manifest_version": 2,
  "description": "Block selected websites for an hour to increase productivity. Donate $1 to charity to unblock a site before the hour is up.",
  "homepage_url": "http://lazydonor.co",
  "icons": {
    "16": "icons/icon128.png",
    "48": "icons/icon128.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js"
      ],
      "css": [
        "css/banner.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_title": "browser action demo",
    "default_popup": "src/popup_pages/dashboard.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "sandbox": {
    "content_security_policy": "font-src 'self/fonts/'"
  }
}