Files
omnivore/apple/Sources/SafariExtension/Resources/scripts/content/page-info.js
2022-02-11 09:24:33 -08:00

1 line
340 B
JavaScript

"use strict";window.getPageInfo=function(){return{title:function(){const n=document.querySelector(SELECTORS.TITLE);return n&&n.content||document.title||""}(),canonicalUrl:function(){const n=window.location.href,t=document.querySelector(SELECTORS.CANONICAL_URL),e=t&&t.href;return e?new URL(e,n).href:n}(),contentType:document.contentType}};