feat: get rid of `Disable Tampermonkey`

This commit is contained in:
Xmader 2020-12-01 13:20:14 -05:00
parent 2a29e378f2
commit c11d6d2c48
No known key found for this signature in database
GPG Key ID: A20B97FB9EB730E4
1 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,16 @@ const TYPE_REG = /id=(\d+)&type=(img|mp3|midi)/
const magicHookConstr = (() => {
const l = {}
// get rid of `Disable Tampermonkey`
const observer = new MutationObserver((mutations) => {
mutations.forEach(x => [...x.addedNodes].forEach(e => {
if (!document.querySelector('.js-page')) {
(e as HTMLElement).replaceWith(...x.removedNodes)
}
}))
})
observer.observe(document, { childList: true, subtree: true })
try {
const p = Object.getPrototypeOf(document.body)
Object.setPrototypeOf(document.body, null)