Permissions-Policy Header Builder
NetworkBuild a Permissions-Policy (formerly Feature-Policy) response header from a list of browser features and their allowlists (self, none, specific origins, or all origins), with a plain-English note on what each directive restricts, or parse an existing header
Pick which browser features (camera, microphone, geolocation, fullscreen, and more) your page should be allowed to use, and what origins are allowed to use them, then get the assembled Permissions-Policy header value back with a plain-English note on what each directive actually restricts. This fills the one major security-header gap left after the site's CORS, CSP, Cache-Control, Referrer-Policy, and Vary builders: a locked-down policy is worth more once you understand it, not just once you have a string to paste. It also parses an existing header you paste in, useful for auditing a policy you found on a real response.
How to use Permissions-Policy Header Builder
- 1.Toggle the features your page needs, or type a custom feature name and add it.
- 2.For each selected feature, choose Block, Self only, All origins, or add specific https:// origins to its allowlist.
- 3.Copy the generated Permissions-Policy header, or paste an existing one into the bottom field to get the same explanation for a header you found on a real response.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/permissions-policy-builder \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"features":[{"feature":"camera","allowlist":[]},{"feature":"geolocation","allowlist":["self"]}],"permissionsPolicyHeader":"camera=(), geolocation=(self)"}'Get an API key from your dashboard · Full API docs →