https://www.youtube.com/watch?v=DevRcgtKMtU

<aside> <img src="/icons/plus_gray.svg" alt="/icons/plus_gray.svg" width="40px" /> How to add new websites

*These instructions are in the video above if you would prefer to learn that way.


  1. Go to the new website you would like to add.
  2. Use that website’s search functionality.
  3. Copy the website’s search URL. For example, If you search for “Notion” on Reddit, the search URL will return “https://www.reddit.com/search/?q=notion”. Erase whatever you searched for so that “https://www.reddit.com/search/?q=” remains.
  4. Create a new formula property within the searches database and use the following formula:

**if(not empty(prop("Name")), "THE SEARCH URL GOES HERE" + replaceAll(replaceAll(prop("Name"), "[,]", ""), " ", "+"), "")

So if we were going to continue with our Reddit example from above, the formula should look like:

if(not empty(prop("Name")), "https://www.reddit.com/search/?q=" + replaceAll(replaceAll(prop("Name"), "[,]", ""), " ", "+"), "")**

Happy searching! 🎉 </aside>