DuckDuckGo Privacy Essentials

DuckDuckGo Privacy Essentials

Simple and seamless privacy protection for your browser: tracker blocking, cookie protection, DuckDuckGo private search, email protection, HTTPS upgrading, and much more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "DuckDuckGo Privacy Essentials",
  "applications": {
    "gecko": {
      "id": "jid1-ZAdIEUB7XOzOJw@jetpack",
      "strict_min_version": "91.0"
    }
  },
  "default_locale": "en",
  "version": "2024.3.11",
  "description": "Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "img/icon_browser_action.png",
    "default_popup": "dashboard/html/browser.html"
  },
  "omnibox": {
    "keyword": "ddg"
  },
  "background": {
    "scripts": [
      "public/js/background.js"
    ]
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "favicon_url": "https://duckduckgo.com/favicon.ico",
      "is_default": true,
      "keyword": "duckduckgo.com",
      "name": "DuckDuckGo",
      "search_url": "https://duckduckgo.com/?q={searchTerms}&t=newext",
      "suggest_url": "https://duckduckgo.com/ac/?q={searchTerms}&type=list"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost/*",
        "*://*.localhost/*"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "public/js/inject.js"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "public/js/content-scripts/autofill.js"
      ],
      "css": [
        "public/css/autofill-host-styles.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost/*",
        "*://*.localhost/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "permissions": [
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "webNavigation",
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>",
    "alarms"
  ],
  "web_accessible_resources": [
    "/web_accessible_resources/*",
    "/public/css/autofill.css",
    "/public/font/*"
  ]
}