Browsing Stats Advanced

Comprehensive web browsing statistics with advanced tools.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icons/logo_64.png",
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webNavigation",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "__MSG_extensionDescription__",
  "icons": {
    "32": "icons/logo_32.png",
    "48": "icons/logo_48.png",
    "64": "icons/logo_64.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.1.0",
      "id": "{d8609e54-61f0-4538-99ef-7f29322e9c36}"
    }
  }
}