Egghead History

Egghead History

A delightful browser history extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Egghead History",
  "version": "1.0.4",
  "description": "A delightful browser history extension",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "96": "icon-96.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "104",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "permissions": [
    "storage",
    "webNavigation",
    "tabs",
    "alarms",
    "history",
    "scripting"
  ],
  "chrome_url_overrides": {
    "history": "history.html"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Open popup"
    }
  }
}