# Can requiredPermissions Grant Access to All Websites?

**URL:** https://forums.creativeclouddeveloper.com/t/can-requiredpermissions-grant-access-to-all-websites/7926
**Category:** UXP Developer Tool
**Created:** [May 25, 2024, 4:49pm UTC](https://forums.creativeclouddeveloper.com/t/can-requiredpermissions-grant-access-to-all-websites/7926 "2024-05-25T16:49:20Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![YesserKira](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.creativeclouddeveloper.com/yesserkira/32/3796_2.png) [@YesserKira](https://forums.creativeclouddeveloper.com/u/YesserKira)
#### Post date: [May 25, 2024, 4:49pm UTC](https://forums.creativeclouddeveloper.com/t/can-requiredpermissions-grant-access-to-all-websites/7926/1 "2024-05-25T16:49:21Z")

</div>

Hi Adobe Community,

I’m developing a Photoshop panel using UXP and I need my plugin to download images from any URL. Currently, I am required to specify each domain in the “requiredPermissions” section of the “manifest.json” file like this:

```auto
"requiredPermissions": {
  "network": {
    "domains": [
      "https://example1.com/*",
      "https://example2.com/*",
      "https://example3.com/*"
    ]
  }
}

```

This approach is very limiting, as users often need to download images from a wide variety of sources. Manually listing all potential domains is not practical and can result in a poor user experience.

**My Question:**  
Is there a way to configure the `requiredPermissions` in the `manifest.json` to grant access to all websites without specifying each domain individually?

If this is not currently possible, are there any best practices or alternative solutions to handle this requirement?

Thank you in advance for your help!

---

<div class="post-metadata">

### Author: ![mykim](https://avatars.discourse-cdn.com/v4/letter/m/76d3ee/32.png) [@mykim](https://forums.creativeclouddeveloper.com/u/mykim)
#### Post date: [May 27, 2024, 7:39am UTC](https://forums.creativeclouddeveloper.com/t/can-requiredpermissions-grant-access-to-all-websites/7926/2 "2024-05-27T07:39:41Z")

</div>

Hi YesserKira,

In you case,  
“domains”: “all”  
would work.

[https://developer.adobe.com/photoshop/uxp/2022/uxp-api/reference-js/Global%20Members/HTML%20Elements/HTMLWebViewElement/](https://developer.adobe.com/photoshop/uxp/2022/uxp-api/reference-js/Global%20Members/HTML%20Elements/HTMLWebViewElement/)

---

<div class="post-metadata">

### Author: ![YesserKira](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.creativeclouddeveloper.com/yesserkira/32/3796_2.png) [@YesserKira](https://forums.creativeclouddeveloper.com/u/YesserKira)
#### Post date: [May 27, 2024, 8:21am UTC](https://forums.creativeclouddeveloper.com/t/can-requiredpermissions-grant-access-to-all-websites/7926/3 "2024-05-27T08:21:26Z")

</div>

OMG, it’s as simple as that! I was attempting to create a proxy to access links, it was quite exhausting! 😅
