SwipeHistory

SwipeHistory

Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SwipeHistory",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.",
  "author": "Rasmus Johanson",
  "homepage_url": "https://github.com/johanson/",
  "minimum_chrome_version": "75",
  "options_ui": {
    "page": "settings/settings.html",
    "chrome_style": true
  },
  "icons": {
    "128": "assets/icon_128.png"
  },
  "browser_action": {
    "default_popup": "settings/settings.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "inject.js"
      ],
      "match_about_blank": true
    }
  ]
}