Created
August 16, 2017 07:28
-
-
Save matijs/004fa7e33db9fe9d42775519aca425e5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(function(doc, body) { | |
const main = doc.querySelector('main').parentNode.removeChild(doc.querySelector('main')); | |
while (body.firstChild) body.removeChild(body.firstChild); | |
body.appendChild(main) | |
}(document, document.body)); |
This file contains hidden or 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
javascript:void(function(doc,body){const main=doc.querySelector('main').parentNode.removeChild(doc.querySelector('main'));while(body.firstChild)body.removeChild(body.firstChild);body.appendChild(main)}(document, document.body)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment