Consistency

Consistency

Consistency helps you to build your habits by blocking websites you don't want to visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Consistency",
  "version": "0.3",
  "permissions": [
    "storage"
  ],
  "description": "Consistency helps you to build your habits by blocking websites you don't want to visit.",
  "options_page": "options.html",
  "page_action": {
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "nono.html",
    "nono.js",
    "images/logo.png",
    "lib/moment.min.js"
  ],
  "manifest_version": 2
}