Go Back With Backspace Button

Go Back With Backspace Button

Restores browser behavior of navigating to previous page when pressing the Backspace key.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.9",
  "name": "__MSG_l10nExtName__",
  "description": "__MSG_l10nExtDescription__",
  "default_locale": "en",
  "icons": {
    "19": "icons/icon19.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "is_editable.js",
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon32.png"
  },
  "background": {
    "scripts": [
      "is_editable.js",
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>"
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "52"
}