Smart Web History

Smart Web History

Uses the chrome.history API to display in a popup the user's most visited pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "name": "Smart Web History",
  "version": "1.0.0",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "swh-icon-16x16.png",
    "32": "swh-icon-32x32.png",
    "48": "swh-icon-48x48.png",
    "64": "swh-icon-64x64.png",
    "128": "swh-icon-128x128.png",
    "256": "swh-icon-256x256.png",
    "512": "swh-icon-512x512.png"
  },
  "description": "Uses the chrome.history API to display in a popup the user's most visited pages.",
  "permissions": [
    "downloads",
    "history"
  ],
  "action": {
    "default_icon": "res/swh06.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}