DuckDuckGo Max

DuckDuckGo Max

Get the Max out of Chrome and DuckDuckGo!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "version": "2.0",
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icons/128.png"
  },
  "description": "__MSG_extension_description__",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+D",
        "windows": "Alt+D",
        "chromeos": "Alt+D",
        "linux": "Alt+D",
        "mac": "Alt+D"
      },
      "description": "__MSG_commands_description__"
    }
  },
  "omnibox": {
    "keyword": "ddg"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://duckduckgo.com/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/search_popup/popup.html",
        "src/search_popup/css/popup.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}