This commit is contained in:
SukkaBot
2023-12-05 06:08:16 +00:00
parent 3565c8fb05
commit d57e626fbd
19 changed files with 518 additions and 42 deletions

14
Mock/ampproject-org_v0.js Normal file
View File

@@ -0,0 +1,14 @@
(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);
}());