History Manager

History Manager

Analyzes chrome history usage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "History Manager",
  "description": "Analyzes chrome history usage.",
  "version": "0.0.0.1",
  "author": "Abdulfattaah Popoola",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "popup.html"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "History Analysis"
  },
  "background": {
    "service_worker": "./scripts/background.js"
  },
  "options_page": "options.html",
  "permissions": [
    "history"
  ]
}