Webscape

Webscape

Instantly navigate the web. Open menu items. Retrieve content. And perform quick actions — all from one unified interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Webscape",
  "version": "2.16.2",
  "description": "Instantly navigate the web. Open menu items. Retrieve content. And perform quick actions — all from one unified interface.",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "icons/logo-16.png"
  },
  "icons": {
    "16": "icons/logo-32.png",
    "48": "icons/logo-48.png",
    "128": "icons/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "widget.html",
        "import-history.html",
        "toolbar.html",
        "onboarding.html",
        "in-google.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "widget.html"
  },
  "permissions": [
    "tabs",
    "tabGroups",
    "scripting",
    "storage",
    "pageCapture",
    "history",
    "unlimitedStorage",
    "bookmarks",
    "webNavigation"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/*"
  ],
  "commands": {
    "OpenPopup": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma",
        "mac": "Command+Shift+Comma"
      },
      "description": "Toggle search"
    },
    "OpenPopupCollections": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period"
      },
      "description": "Toggle collections"
    },
    "SaveCurrentTab": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Save current tab"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      }
    }
  }
}