webextensions History Browser

webextensions History Browser

Browse your browser history like a boss. Other extensions that can do it aren't compatible with Firefox 57+ anymore, only work in firefox and/or aren't open source. This extension tries to solve all of this

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Browse your firefox history like a boss.",
  "version": "1.0.2",
  "manifest_version": 2,
  "name": "History browser",
  "icons": {
    "32": "history-32.png"
  },
  "permissions": [
    "history",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "history-32.png",
    "default_title": "history",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.bundle.js",
      "history.bundle.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}