- Execute Bookmark "open IFRAME google doc"
- Inside that new window execute bookmark "extract slides google doc"
Last active
April 22, 2021 07:32
-
-
Save nullxx/1981c838ac33f9461ca45ca92d3b9bb4 to your computer and use it in GitHub Desktop.
Download google doc document
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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