Examine source code of Narrow Page

Inspect and view changes in Narrow Page 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": 2,
  "name": "Narrow Page",
  "short_name": "Narrow Page",
  "version": "0.1.0",
  "author": "b.",
  "homepage_url": "https://git.sr.ht/~torresjrjr/narrowpage",
  "description": "Adjust the width of your webpages with a shortcut.",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "icons/icon-128.png"
    },
    "default_title": "Narrow Page"
  },
  "background": {
    "scripts": [
      "narrowpage.js"
    ]
  },
  "commands": {
    "cycle-width-modes": {
      "suggested_key": {
        "default": "Shift+Alt+W"
      },
      "description": "Cycle width modes"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d4ec579f-f07d-4bc2-84a8-6aeea5d5e170}"
    }
  }
}