I'm doing a Chrome extension about looking though posts from a forum.
Now,I can get some posts' links and I put these links into in my popup.html like this:
<a href="post's link" target="_blank">post's title</a>
Then when I click the link, a new tab will be opened, but the popup.html page will disappear.
And when I click with pressing , new tab will be opened, but problem still exists.
Now, I want to know if I can open a new tab by clicking a link, and in the meantime I can keep my popup.html page still Show.
I refer to the documentation of chrome extension development, but I still can not solve this problem.
So, can this be realized? And how?
Thanks!