Go Back(space)

Go Back(space)

This extension will restore the functionality of pressing backspace to go to the previous page, and shift+backspace to go forward.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Go Back(space)",
  "description": "This extension will restore the functionality of pressing backspace to go to the previous page, and shift+backspace to go forward.",
  "version": "1.3",
  "minimum_chrome_version": "52",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ],
      "run_at": "document_start"
    }
  ]
}