Site Visits

Site Visits

Shows you if you have previously visited the URL in the current tab. Displays the number of previous visits on the action icon, and displays the dates of 50 last visits in the icon's popup window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "history",
    "tabs",
    "webNavigation"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icon.svg",
    "default_title": "Site Visits",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "name": "Site Visits",
  "author": "antishok",
  "version": "0.2.2",
  "browser_specific_settings": {
    "gecko": {
      "id": "{b69c1023-337e-4646-9d2e-0a90274d1f5d}"
    }
  }
}