Examine source code of Movable window-maximize-button

Inspect and view changes in Movable window-maximize-button 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
{
  "description": "Creates a movable button to maximize / restore current window.",
  "manifest_version": 3,
  "author": "MrOtherGuy",
  "name": "Movable window-maximize-button",
  "version": "2.0",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_title": "Maximize/Restore",
    "theme_icons": [
      {
        "dark": "icons/button-auto-dark.svg",
        "light": "icons/button-auto-light.svg",
        "size": 16
      }
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "mwmaximize@example.com",
      "strict_min_version": "112.0"
    }
  }
}