---
title: "hasPermission(_:in:)"
framework: webkit
role: symbol
role_heading: Instance Method
path: "webkit/wkwebextensioncontext/haspermission(_:in:)"
---

# hasPermission(_:in:)

Checks the specified permission against the currently granted permissions in a specific tab.

## Declaration

```swift
func hasPermission(_ permission: WKWebExtension.Permission, in tab: (any WKWebExtensionTab)?) -> Bool
```

## Parameters

- `permission`: The permission for which to return the status.
- `tab`: The tab in which to return the permission status, or nil if the tab is not known or the global status is desired.

## Discussion

Discussion Permissions can be granted on a per-tab basis. When the tab is known, permission checks should always use this method.

## See Also

### Related Documentation

- [currentPermissions](webkit/wkwebextensioncontext/currentpermissions.md)
- [hasPermission(_:)](webkit/wkwebextensioncontext/haspermission(_:).md)
- [permissionStatus(for:)](webkit/wkwebextensioncontext/permissionstatus(for:)-3qq2w.md)
- [permissionStatus(for:in:)](webkit/wkwebextensioncontext/permissionstatus(for:in:)-4h82n.md)
