Examine source code of Don't save to history

Inspect and view changes in Don't save to history source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Don't save to history",
  "version": "1.0.3",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Don't save to history",
    "default_icon": "192-history-no.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "history"
  ],
  "description": "This extension lets you create a custom list of websites that will never be recorded in your browser's history.",
  "icons": {
    "16": "16-history-no.png",
    "32": "32-history-no.png",
    "48": "48-history-no.png",
    "192": "192-dont-save-to-history.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}