Examine source code of NoScroll

Inspect and view changes in NoScroll 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": "NoScroll",
  "version": "1.2resigned1",
  "description": "Disable scrolling when dragging links or text to the top or bottom of the screen.",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "53.0",
      "id": "{70cc422f-85af-46b7-8649-fe389ca09077}"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}