DNS

dns
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Provides access to the chrome.dns API for performing DNS resolution programmatically. This allows extensions to resolve domain names to IP addresses without making actual network requests.

What This Means For You

The extension can look up the IP addresses of website domains. This is useful for network diagnostic tools or security extensions that need to analyze DNS.

Related APIs

This permission enables access to these Chrome APIs:

chrome.dns

Common Use Cases

  • Network diagnostics
  • Security tools
  • DNS managers

How to Declare in manifest.json

Add the "dns" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "dns"
  ]
}

Related Permissions