mirror of
https://gitlab.com/SukkaW/ruleset.skk.moe.git
synced 2025-12-31 17:40:25 +00: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();
|
|
}
|
|
}());
|