swipe-back

swipe-back

Go back to previous page by swiping left with two fingers on a trackpad.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "swipe-back",
  "version": "0.1.1",
  "description": "Go back to previous page by swiping left with two fingers on a trackpad.",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "swipe-back.js"
      ],
      "css": [
        "swipe-back.css"
      ]
    }
  ]
}