Custom Browsing History

Custom Browsing History

This allows you to keep a history of only your favorite sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Custom Browsing History",
  "version": "2.0.2",
  "description": "This allows you to keep a history of only your favorite sites.",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "history"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Custom Browsing History",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "128": "img/icon128.png"
  },
  "default_locale": "en",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+H"
      }
    }
  }
}