Chrome Backspace

Chrome Backspace

Chrome backspace key down. You are browser history back

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Backspace",
  "description": "Chrome backspace key down.\nYou are browser history back",
  "version": "1.0.2",
  "icons": {
    "128": "backspaceImage.png"
  },
  "homepage_url": "https://github.com/KimYoungWoong/backspace",
  "permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "setBackSpaceKeyDown.js"
      ]
    }
  ]
}