Examine source code of Swipe two to back/forward

Inspect and view changes in Swipe two to back/forward 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": "Swipe two finger to back/forward",
  "version": "1",
  "description": "This extension enables two-finger swipe like in safari. ",
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "touch.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {}
  }
}