Skip to content

Instantly share code, notes, and snippets.

@dance2die
Last active August 22, 2024 14:01
Show Gist options
  • Save dance2die/d05924be83c6be1b20ba94206ff2beb0 to your computer and use it in GitHub Desktop.
Save dance2die/d05924be83c6be1b20ba94206ff2beb0 to your computer and use it in GitHub Desktop.
chrome.tabs.query(
{ active: true, windowId: chrome.windows.WINDOW_ID_CURRENT },
function(tabs) {
const { id: tabId } = tabs[0].url;
let code = `document.querySelector('h1')`;
// http://infoheap.com/chrome-extension-tutorial-access-dom/
chrome.tabs.executeScript(tabId, { code }, function (result) {
// result has the return value from `code`
});
}
);
@samuelowilliams
Copy link

did you later find a solution?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment