Backspace Plus to go Back

Backspace Plus to go Back

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Backspace Plus to go Back",
  "short_name": "Backspace Plus",
  "description": "__MSG_description__",
  "background": {
    "scripts": [
      "js/ga.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "js/events.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "permissions": [
    "commands",
    "storage"
  ],
  "default_locale": "en",
  "offline_enabled": true,
  "options_page": "options.html",
  "manifest_version": 2,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "author": "SofWar",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js 'unsafe-eval'; object-src 'self'"
}