Visit Counter

Visit Counter

Counts how often you visit which websites. Source code available under https://github.com/azadad96/visit_counter. If you need help, please open an issue on github.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Visit Counter",
  "description": "Counts how often you visit which websites.",
  "homepage_url": "https://github.com/azadad96",
  "version": "2.2",
  "browser_specific_settings": {
    "gecko": {
      "id": "{5306e664-1071-409a-8cab-fc9a3c24828b}"
    }
  },
  "icons": {
    "96": "icon96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "visit.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "showdata.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "96": "icon96.png"
    },
    "default_title": "Visit Counter"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ]
}