Skip to content

Instantly share code, notes, and snippets.

@lukeburns
Created April 17, 2021 05:11
Show Gist options
  • Select an option

  • Save lukeburns/3a1c2f18a5797f96d67a6c334d704474 to your computer and use it in GitHub Desktop.

Select an option

Save lukeburns/3a1c2f18a5797f96d67a6c334d704474 to your computer and use it in GitHub Desktop.
Chrome 'Open Frame in New Tab' Context Menu Extension
chrome.contextMenus.create({
title: 'Open Frame in New Tab',
contexts: ['frame'],
onclick: ({ frameUrl }) => {
chrome.tabs.create({
active: false,
url: frameUrl
})
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment