ProductivEasy Website Blocker

ProductivEasy Website Blocker

Block websites and boost your productivity the easy way

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ProductivEasy Website Blocker",
  "description": "Block websites and boost your productivity the easy way",
  "version": "0.2",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html",
    "default_title": "Manage settings"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "https://ajax.googleapis.com/",
    "storage",
    "background"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}