Update CDN & Download & Reject & Global Hosts

This commit is contained in:
SukkaW
2023-12-05 14:05:59 +08:00
parent 7e13ae7a24
commit c85722c848
31 changed files with 122 additions and 108 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);
}());