Navigate Up WE

Navigate Up WE

Navigate up one or more URL levels, using the toolbar button, context menu or keyboard shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Navigate Up WE",
  "version": "4.4",
  "description": "Navigate up one or more URL levels.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "navigateup-we@DW-dev",
      "strict_min_version": "51.0"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Navigate Up WE"
  },
  "background": {
    "scripts": [
      "background.js",
      "publicsuffixlist.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Navigate Up",
      "suggested_key": {
        "default": "Alt+U"
      }
    }
  }
}