So, I am looking to improve my JavaScript skills my producing a simple chrome extension that I can use for myself to blacklist websites. This is going to take inputField's to take user entered data and save it into my Chrome browser so I can block websites that I either use too much or deem as malicious.
However, I wanted to know what the best way to do this was. My HTML and CSS skills are perfectly up to scratch but I am very new to JavaScript. I currently have HTML and CSS code written to fit a list for my blacklist sites.
I know how to save data to a list but was wondering what the best way to save this to the browser was. I was thinking of using chrome.storage function to do this... Is this the most efficient way?