2020-04-04 18:38:00 +00:00
|
|
|
// window.onload = () => console.log('window.onload');
|
|
|
|
// window.onloadstart = () => console.log('window.onloadstart');
|
|
|
|
// window.onloadend = () => console.log('window.onloadend');
|
|
|
|
// window.addEventListener('DOMContentLoaded', () => (console.log('window.DOMContentLoaded')));
|
|
|
|
// setTimeout(() => (console.log('Timeout')), 0); ---- Note that clear() below will break this
|
|
|
|
|
2020-03-15 18:17:36 +00:00
|
|
|
(() => {
|
|
|
|
try {
|
2020-04-04 18:38:00 +00:00
|
|
|
if (window.location.href.match(/^https?:\/\/(www.)?pornhub.com/)) {
|
|
|
|
const el = document.createElement('script');
|
|
|
|
el.type='text/javascript';
|
|
|
|
el.text="console.log('JQuery Injection'); window.$ = window.jQuery = require('jquery');";
|
|
|
|
document.appendChild(el);
|
2020-03-30 21:52:25 +00:00
|
|
|
|
2020-04-04 18:38:00 +00:00
|
|
|
if (!window.zest) {
|
|
|
|
window.zest = (q) => (document.querySelectorAll(q));
|
2020-03-30 21:52:25 +00:00
|
|
|
}
|
2020-04-04 18:38:00 +00:00
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error('PornHub integration', err);
|
|
|
|
}
|
|
|
|
})();
|
2020-03-30 21:52:25 +00:00
|
|
|
|
2020-04-04 18:38:00 +00:00
|
|
|
(() => {
|
|
|
|
try {
|
|
|
|
const clear = () => {
|
2020-03-30 21:52:25 +00:00
|
|
|
try {
|
|
|
|
const frameCount = window.frames.length;
|
|
|
|
|
|
|
|
for (let i = 0; i < frameCount; i++) {
|
|
|
|
window.frames[i].location = 'about:blank';
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Frame location', e);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const scriptCount = document.scripts.length;
|
|
|
|
|
|
|
|
for (let i = 0; i < scriptCount; i++) {
|
|
|
|
document.scripts[i].src = 'about:blank';
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Script location', e);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
document.querySelectorAll('iframe, script' /*, style, head' */ )
|
|
|
|
.forEach((e) => e.remove());
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Element remove', e);
|
|
|
|
}
|
|
|
|
|
2020-04-04 18:38:00 +00:00
|
|
|
const intervalCount = setInterval(() => {}, 10000);
|
2020-03-30 21:52:25 +00:00
|
|
|
|
2020-04-04 18:38:00 +00:00
|
|
|
for (let i = 0; i <= intervalCount; i++) {
|
|
|
|
try {
|
|
|
|
clearInterval(i);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Clear interval', i, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const timeoutCount = setTimeout(() => {}, 10000);
|
|
|
|
|
|
|
|
for (let i = 0; i <= timeoutCount; i++) {
|
|
|
|
try {
|
|
|
|
clearTimeout(i);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Clear timeout', i, e);
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 21:52:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
console.log('Document loading', Date.now());
|
|
|
|
clear();
|
|
|
|
|
2020-03-15 18:17:36 +00:00
|
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
|
|
console.log('DOM fully loaded and parsed', Date.now());
|
2020-03-30 21:52:25 +00:00
|
|
|
clear();
|
2020-04-04 20:22:42 +00:00
|
|
|
|
|
|
|
// const ipcRenderer = require('electron').ipcRenderer;
|
|
|
|
// ipcRenderer.sendToHost('state.dom-loaded');
|
2020-03-15 18:17:36 +00:00
|
|
|
});
|
|
|
|
} catch(e) {
|
2020-04-01 22:19:55 +00:00
|
|
|
console.error('browser.pre', e);
|
|
|
|
console.trace();
|
2020-03-15 18:17:36 +00:00
|
|
|
}
|
|
|
|
})();
|
|
|
|
|