Navigate Up WE

Navigate Up WE

Navigate up one or more URL levels.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Navigate Up WE",
  "version": "31.2",
  "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"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "contextMenus",
    "scripting",
    "notifications",
    "storage"
  ],
  "host_permissions": [],
  "action": {
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Navigate Up WE"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {
      "description": "Navigate Up",
      "suggested_key": {
        "default": "Alt+U"
      }
    }
  }
}