Dropbox Dash (Beta)

Dropbox Dash (Beta)

Search tabs, bookmarks, and history with Dropbox Dash.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dropbox Dash (Beta)",
  "short_name": "Dropbox Dash",
  "author": "Dropbox Inc.",
  "description": "Search tabs, bookmarks, and history with Dropbox Dash.",
  "homepage_url": "https://www.dropbox.com/",
  "version": "5.59.3",
  "version_name": "5.59.3b",
  "icons": {
    "16": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-16.png",
    "32": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-32.png",
    "48": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-48.png",
    "128": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-128.png"
  },
  "background": {
    "service_worker": "/srcdist/background/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Open the extension"
    },
    "save_as_weblink": {
      "suggested_key": {
        "default": "Alt+Shift+2"
      },
      "description": "Save page as weblink"
    }
  },
  "permissions": [
    "alarms",
    "bookmarks",
    "contextMenus",
    "downloads",
    "history",
    "nativeMessaging",
    "storage",
    "tabs",
    "webNavigation",
    "unlimitedStorage",
    "activeTab",
    "background",
    "tabGroups",
    "declarativeNetRequest"
  ],
  "incognito": "spanning",
  "action": {
    "default_icon": {
      "16": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-16.png",
      "32": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-32.png",
      "48": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-48.png",
      "128": "srcdist/shared/icons/dropbox-dash-icon-light-enabled-128.png"
    },
    "default_title": "Dropbox Dash (Beta)",
    "default_popup": "stacksPopup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "js": [
        "srcdist/views/bundle_script.js"
      ],
      "css": [
        "srcdist/content/content_styles.css",
        "srcdist/views/shared/sprigIframe.css"
      ]
    },
    {
      "matches": [
        "https://*.dropbox.com/dash*",
        "https://www.dash.ai/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "srcdist/content/install-detection.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "srcdist/content/content_styles.css",
        "srcdist/translations/*",
        "srcdist/views/bundle_shadow_dom.css",
        "srcdist/views/shared/fonts/fonts.css",
        "srcdist/views/start_bundle_script.css",
        "srcdist/views/shared/sprigIframe.css",
        "srcdist/assets/*",
        "onboarding.html",
        "auth.html",
        "userSurvey.html",
        "start.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.dash.ai/*",
      "https://master.d2unov8w0g44qf.amplifyapp.com/*",
      "https://web-staging.d2unov8w0g44qf.amplifyapp.com/*",
      "https://web-prod.d2unov8w0g44qf.amplifyapp.com/*"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "start.html"
  },
  "declarative_net_request": {
    "rule_resources": []
  }
}