JumpBack Button

JumpBack Button

Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JumpBack Button",
  "short_name": "JumpBack",
  "description": "Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.",
  "version": "1.1",
  "permissions": [
    "history",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}