Backspace navigation (for Linux)

Backspace navigation (for Linux)

This simple extension allows you to use the backspace key to go back one page in your browser history (when not typing in some…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Backspace navigation (for Linux)",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "backspace.js"
      ],
      "all_frames": true
    }
  ]
}