Files
ruleset.skk.moe/Mock/ampproject-org_v0.js
2023-12-05 06:08:16 +00:00

15 lines
305 B
JavaScript

(function () {
'use strict';
const head = document.head;
if (!head) { return; }
const style = document.createElement('style');
style.textContent = [
'body {',
' animation: none !important;',
' overflow: unset !important;',
'}'
].join('\n');
head.appendChild(style);
}());