Examine source code of Hard Refresh

Inspect and view changes in Hard Refresh 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
{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "3.0.0",
  "default_locale": "en",
  "homepage_url": "https://openaddons.com/",
  "description": "__MSG_description__",
  "icons": {
    "16": "icon.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "browsingData",
    "storage"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_icon_hover_text__"
  },
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Activate the extension"
    }
  },
  "update_url": "https://clients2.google.com/service/update2/crx"
}