Visit Counter

Visit Counter

Counts the number of times you've visited that a website throughout the day

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Visit Counter",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Counts the number of times you've visited that a website throughout the day",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ]
}