Examine source code of Edit Pager

Inspect and view changes in Edit Pager 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",
  "name": "Edit Pager",
  "description": "Edit web pages directly within the Chrome tab and capture screenshots effortlessly with this extension.",
  "icons": {
    "128": "icon.png"
  },
  "version": "1.0.1",
  "manifest_version": 3,
  "action": {
    "default_title": "Edit Pager",
    "default_popup": "js/index.html",
    "default_icon": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "downloads"
  ]
}