CbtCognitiveBehavioralTherapy.com

CbtCognitiveBehavioralTherapy.com

CbtCognitiveBehavioralTherapy.com extension of chrome extension that notify the users of time spent on this site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CbtCognitiveBehavioralTherapy.com",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "CbtCognitiveBehavioralTherapy.com extension of chrome extension that notify the users of time spent on this site.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.cbtcognitivebehavioraltherapy.com/*",
        "https://www.cbtcognitivebehavioraltherapy.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content_style.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://www.cbtcognitivebehavioraltherapy.com/*",
    "https://www.cbtcognitivebehavioraltherapy.com/*",
    "notifications"
  ]
}