Self Control

Self Control

A simple extension to keep you focused online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background-bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/pirate_19.png",
      "38": "images/pirate_38.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "Self Control"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "description": "A simple extension to keep you focused online",
  "icons": {
    "16": "images/pirate_16.png",
    "48": "images/pirate_48.png",
    "128": "images/pirate_128.png"
  },
  "incognito": "spanning",
  "manifest_version": 2,
  "name": "Self Control",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "version": "2.1.2",
  "web_accessible_resources": [
    "html/*",
    "images/*"
  ]
}