Mile Wide Back

Mile Wide Back

Quickly navigate back in the browser history by clicking on the left border of the window, navigate forward by right-clicking on it, middle-click on the left border to close the current tab, and rotate the mouse-wheel to cycle through your tabs.

Additional files are visible only to premium users

manifest.json


{
  "name": "Mile Wide Back",
  "author": "Terry",
  "version": "0.3",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "homepage_url": "https://github.com/em-te/webextensions-mile-wide-back",
  "icons": {
    "24": "mile_wide_back_24.png",
    "30": "mile_wide_back_30.png",
    "48": "mile_wide_back_48.png",
    "96": "mile_wide_back_96.png"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.htm"
  }
}