mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-11 16:50:33 +08:00
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
const noopfn = function () { /* noop */ };
|
|
window.pSUPERFLY = {
|
|
activity: noopfn,
|
|
virtualPage: noopfn
|
|
};
|
|
for (const hider of document.querySelectorAll('style[id^=chartbeat-flicker-control]')) {
|
|
hider.remove();
|
|
}
|
|
}());
|