refactor: get rid of `Disable Tampermonkey`

This commit is contained in:
Xmader 2020-12-06 02:36:05 -05:00
parent f224edbc49
commit 05e147a03c
No known key found for this signature in database
GPG Key ID: A20B97FB9EB730E4
2 changed files with 10 additions and 10 deletions

View File

@ -14,16 +14,6 @@ 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)

View File

@ -18,6 +18,16 @@ if (_GM && _GM.registerMenuCommand && _GM.openInTab) {
)
}
// get rid of `Disable Tampermonkey`
const observer = new MutationObserver((mutations) => {
mutations.forEach(x => [...x.addedNodes].forEach(e => {
if (!document.querySelector('.js-page')) {
e.replaceWith(...x.removedNodes)
}
}))
})
observer.observe(document, { childList: true, subtree: true })
// script loader
new Promise(resolve => {
const id = '' + Math.random();