Add Safari internal JS services and documentation

This commit is contained in:
√(noham)²
2026-01-17 13:12:26 +01:00
commit 750f1a766d
17 changed files with 14397 additions and 0 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;
}
})();