Two-Finger History Jump

Two-Finger History Jump

This add-on allows you to jump back/forward in the browser's history by swiping horizontally with two fingers on your touchpad. Swiping to the left will take you back one page, while swiping to the right will do the opposite.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Two-Finger History Jump",
  "version": "2.0.1",
  "description": "This add-on allows you to jump back/forward in the browser's history by swiping horizontally with two fingers on your touchpad. It mimics the default behaviour on Mac Os. It needs the 'Access your data for all websites' permission in order to access the browser's local storage and be able to save its settings persistently.",
  "icons": {
    "48": "icon-dark.svg"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Two-Finger History Jump",
    "browser_style": true,
    "default_icon": {
      "16": "icon-dark.svg",
      "32": "icon-dark.svg"
    },
    "theme_icons": [
      {
        "light": "icon-light.svg",
        "dark": "icon-dark.svg",
        "size": 16
      },
      {
        "light": "icon-light.svg",
        "dark": "icon-dark.svg",
        "size": 32
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "options_ui": {
    "page": "popup.html"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{57015cac-9cb6-43b3-975a-b305fd4012c9}"
    }
  }
}