Skip to content

Instantly share code, notes, and snippets.

@patrikturi
Last active January 17, 2021 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrikturi/0ed41f97fd8d7768663d018c1262e892 to your computer and use it in GitHub Desktop.
Save patrikturi/0ed41f97fd8d7768663d018c1262e892 to your computer and use it in GitHub Desktop.
Simplified content script
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
var xpath = "//div[text()='New page']";
var buttonElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE).singleNodeValue;
buttonElement.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment