Why Add Trusted Sites in Edge? Adding trusted sites in Edge allows you to ensure that websites you frequently visit are secure and trustworthy. When you add a site to your trusted sites list, Edge will:
Automatically trust the site and its content Allow the site to run scripts and load content without restrictions Reduce security warnings and prompts
How to Add Trusted Sites in Edge To add a trusted site in Edge, follow these steps:
Open Microsoft Edge : Launch Microsoft Edge on your computer. Go to Settings : Click on the three horizontal dots (⋯) in the upper right corner of the browser window and select Settings . Click on Cookies and site permissions : In the Settings page, scroll down and click on Cookies and site permissions . Click on Manage and delete cookies and site data : Under the Cookies and site permissions section, click on Manage and delete cookies and site data . Click on Site permissions : Scroll down and click on Site permissions . Click on Trusted sites : Under the Site permissions section, click on Trusted sites . Enter the website URL : In the Trusted sites section, click on the Add button. Enter the website URL : Enter the URL of the website you want to add to your trusted sites list (e.g., https://www.example.com ). Click Add : Click the Add button to add the site to your trusted sites list. edge add trusted sites
Alternative Method: Add Trusted Sites using Internet Options You can also add trusted sites in Edge using Internet Options:
Open Internet Options : Press the Windows key + R to open the Run dialog box, type inetcpl.cpl , and press Enter. Go to Security tab : In the Internet Options window, click on the Security tab. Select Trusted sites : Click on Trusted sites and then click on the Sites button. Enter the website URL : Enter the URL of the website you want to add to your trusted sites list (e.g., https://www.example.com ). Click Add : Click the Add button to add the site to your trusted sites list.
Verify Trusted Sites in Edge To verify that a site is added to your trusted sites list in Edge: Why Add Trusted Sites in Edge
Open Edge : Launch Microsoft Edge on your computer. Go to Settings : Click on the three horizontal dots (⋯) in the upper right corner of the browser window and select Settings . Click on Cookies and site permissions : In the Settings page, scroll down and click on Cookies and site permissions . Click on Manage and delete cookies and site data : Under the Cookies and site permissions section, click on Manage and delete cookies and site data . Click on Site permissions : Scroll down and click on Site permissions . Click on Trusted sites : Under the Site permissions section, click on Trusted sites . Verify the site : Verify that the site you added is listed in the Trusted sites section.
Troubleshooting If you encounter issues adding trusted sites in Edge, try:
Clearing browser cache and cookies Checking that the site URL is correct Ensuring that the site is not already listed in the Restricted sites list Go to Settings : Click on the three
Conclusion Adding trusted sites in Edge helps ensure a secure and seamless browsing experience. By following these steps, you can add trusted sites to your Edge browser and reduce security warnings and prompts. If you encounter any issues, refer to the troubleshooting section or seek further assistance.
Beyond the Legacy: A Deep Dive into Microsoft Edge’s “Trusted Sites” and Site Permissions At first glance, the phrase “add trusted sites” feels like a relic. For decades, system administrators and power users navigated the labyrinthine Internet Options control panel in Internet Explorer (IE) to designate specific URLs as “trusted.” The goal was simple: lower security barriers for known, safe internal or corporate sites while maintaining high walls for the rest of the web. With the rise of Microsoft Edge (particularly the Chromium-based version released in 2020), the concept of a “trusted site” has fundamentally fractured. It is no longer a single toggle or a zone-based security model. Instead, Edge now manages trust through a decentralized, granular, and context-aware system of permissions, enterprise policies, and smart screen heuristics. This article explores what “adding a trusted site” actually means in the Edge ecosystem, the legacy pathways that still exist, and the modern security philosophy that underpins it all. The Ghost of Internet Explorer: Zones Still Exist To understand Edge, you must first understand the enduring ghost of IE. Edge, even in its Chromium incarnation, maintains deep compatibility with legacy enterprise infrastructure. It does this through the Internet Options control panel—a Windows system component, not an Edge setting. If you type inetcpl.cpl into the Windows Run dialog, you open the classic “Internet Properties” window. Here, the four security zones remain:
This LMC simulator is based on the Little Man Computer (LMC) model of a computer, created by Dr. Stuart Madnick in 1965. LMC is generally used for educational purposes as it models a simple Von Neumann architecture computer which has all of the basic features of a modern computer. It is programmed using assembly code. You can find out more about this model on this wikipedia page.
You can read more about this LMC simulator on 101Computing.net.
Note that in the following table “xx” refers to a memory address (aka mailbox) in the RAM. The online LMC simulator has 100 different mailboxes in the RAM ranging from 00 to 99.
| Mnemonic | Name | Description | Op Code |
| INP | INPUT | Retrieve user input and stores it in the accumulator. | 901 |
| OUT | OUTPUT | Output the value stored in the accumulator. | 902 |
| LDA | LOAD | Load the Accumulator with the contents of the memory address given. | 5xx |
| STA | STORE | Store the value in the Accumulator in the memory address given. | 3xx |
| ADD | ADD | Add the contents of the memory address to the Accumulator | 1xx |
| SUB | SUBTRACT | Subtract the contents of the memory address from the Accumulator | 2xx |
| BRP | BRANCH IF POSITIVE | Branch/Jump to the address given if the Accumulator is zero or positive. | 8xx |
| BRZ | BRANCH IF ZERO | Branch/Jump to the address given if the Accumulator is zero. | 7xx |
| BRA | BRANCH ALWAYS | Branch/Jump to the address given. | 6xx |
| HLT | HALT | Stop the code | 000 |
| DAT | DATA LOCATION | Used to associate a label to a free memory address. An optional value can also be used to be stored at the memory address. |