You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions
When my extension tries to open another extension page, chrome blocks it. I assume this has some security implications but I struggle to understand how security could be impacted. Could someone please shed some light on this?
woxxom
unread,
Dec 14, 2024, 4:14:08 PM12/14/24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions, Paul Amoah
You probably open it via a web platform feature like `location` or a DOM <a> element. It's a web platform restriction that is intended to avoid some kind of privilege abuse, but in case of extensions this behavior is actually a bug, because extensions can circumvent this restriction via
use chrome.tabs.create({url: '........'}) or chrome.tabs.update, see also https://stackoverflow.com/a/40364044.