mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-11 16:50:33 +08:00
15 lines
305 B
JavaScript
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);
|
|
}());
|