Skip to content

Instantly share code, notes, and snippets.

@nullxx
Last active April 22, 2021 07:32
Show Gist options
  • Save nullxx/1981c838ac33f9461ca45ca92d3b9bb4 to your computer and use it in GitHub Desktop.
Save nullxx/1981c838ac33f9461ca45ca92d3b9bb4 to your computer and use it in GitHub Desktop.
Download google doc document
  • Execute Bookmark "open IFRAME google doc"
  • Inside that new window execute bookmark "extract slides google doc"
// script 2 => save it to bookmark with name "extract slides google doc"
const svgs = [];
let svgContainer;
const size = parseInt(document.getElementById(':d').getAttribute('aria-setsize'), 10);
const interval = setInterval(() => {
const counter = parseInt(document.getElementById(':d').innerHTML, 10);
svgContainer = document.querySelectorAll('.punch-viewer-svgpage-svgcontainer');
const svg = svgContainer[0].children['0'];
svgs.push(svg);
if (svgContainer.length === 0 || size === counter) {
clearInterval(interval);
document.body.innerHTML = '';
svgs.forEach((svg) => document.body.innerHTML += new XMLSerializer().serializeToString(svg));
document.body.style.overflow = "scroll";
window.print();
return;
};
svgContainer[0].click();
}, 800);
// script 1 => save it to bookmark with name "open IFRAME google doc"
document.querySelectorAll('iframe').forEach(iframe => new RegExp('^https:\/\/docs\.google', 'g').test(iframe.src) ? window.open(iframe.src, '_blank').focus() : undefined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment