Examine source code of Page Refresher

Inspect and view changes in Page Refresher 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": "Page Refresher",
  "version": "2.0.0",
  "author": "Alex Nguyen",
  "description": "A simple per-tab automatic page refresher/reloader.",
  "icons": {
    "16": "./src/img/logo-16.png",
    "48": "./src/img/logo-48.png",
    "128": "./src/img/logo-128.png"
  },
  "background": {
    "service_worker": "src/js/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_title": "Page Refresher",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "homepage_url": "https://github.com/alexnguyennz/pagerefresher"
}