Examine source code of touch swipe navigation

Inspect and view changes in touch swipe navigation 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
{
  "name": "touch navigation",
  "description": "go backward, forward in your browser history with touch swipes",
  "manifest_version": 2,
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "touchnavigation@h43z"
    }
  },
  "permissions": [
    "activeTab"
  ]
}