Add 26.2 versioned JS files and move 15.7 files

This commit is contained in:
√(noham)²
2026-01-17 14:46:26 +01:00
parent b8c9fe8c4b
commit b68eb4accb
39 changed files with 25445 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
//# sourceURL=__InjectedScript_SchemaOrgMarkupChecker.js
/* Copyright (c) 2025 Apple Inc. All rights reserved. */
(function () {
const e = "schema.org";
var t = document.querySelectorAll('script[type="application/ld+json"]');
for (let o of t) {
var r;
try {
r = JSON.parse(o.text);
} catch (e) {
continue;
}
if (r["@context"].toLowerCase().includes(e)) return !0;
}
var o = document.querySelectorAll("[itemscope]");
for (let t of o) {
var c = t.getAttribute("itemType");
if (c && c.toLowerCase().includes(e)) return !0;
}
})();