Skip to content

Instantly share code, notes, and snippets.

@iriyak
Created November 7, 2020 08:11
Show Gist options
  • Save iriyak/37093e2f9f3297ca6ae6cf40ac40206f to your computer and use it in GitHub Desktop.
Save iriyak/37093e2f9f3297ca6ae6cf40ac40206f to your computer and use it in GitHub Desktop.
javascript:(
() => {
const elm = document.getElementById('backgroundImage');
if (elm) {
const params = new URLSearchParams(elm.src);
const url = params.get('chrome-untrusted://new-tab-page/custom_background_image?url');
window.location.href = url;
}
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment