Browser History Plus

Browser History Plus

Browser History Plus replaces the default browser history and offers additional controls to manage and browse history with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.3",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "history",
    "browsingData",
    "downloads",
    "cookies",
    "alarms",
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "chrome_url_overrides": {
    "history": "history.html"
  },
  "commands": {
    "clear-data": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Clear Data"
    }
  },
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}