Examine source code of Stackroom Page Saver

Inspect and view changes in Stackroom Page Saver 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": "Stackroom Page Saver",
  "description": "Saves the current web page to your Stackroom board.",
  "version": "1.0.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "/images/fav_icon16.png",
      "32": "/images/fav_icon32.png",
      "48": "/images/fav_icon48.png",
      "128": "/images/fav_icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/images/fav_icon16.png",
    "32": "/images/fav_icon32.png",
    "48": "/images/fav_icon48.png",
    "128": "/images/fav_icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://stackroom.app/extension"
    ]
  }
}