files/en-us/web/http/reference/headers/content-security-policy/manifest-src/index.md
The HTTP
{{HTTPHeader("Content-Security-Policy")}} manifest-src
directive specifies which manifest can be applied
to the resource.
Content-Security-Policy: manifest-src 'none';
Content-Security-Policy: manifest-src <source-expression-list>;
This directive may have one of the following values:
'none'
<source-expression-list>
Given this CSP header:
Content-Security-Policy: manifest-src https://example.com/
The following {{HTMLElement("link")}} is blocked and won't load:
<link rel="manifest" href="https://not-example.com/manifest" />
{{Specifications}}
{{Compat}}