如何从Google Chrome扩展程序获取PDF文件的URL

vc9ivgsu  于 11个月前  发布在  Go
关注(0)|答案(1)|浏览(149)

去年,我开发了一个谷歌扩展,工作在PDF文件。我使用以下功能,以获得PDF文件的URL:

function getPDFUrl(): String {
    const e = document.body.firstElementChild;
    if (e.id != "plugin" || e.type != "application/pdf" || e.src == undefined)
        throw new Error("This does not look like a PDF document");
    return e.src;
}

字符串
现在,最新版本的Google Chrome不再提供src属性。

<html>
  <body style="height: 100%; width: 100%; overflow: hidden; margin:0px; background-color: rgb(82, 86, 89);">
    <embed style="position:absolute; left: 0; top: 0;" width="100%" height="100%" src="about:blank" type="application/pdf" internalid="3568AA495C01C5F2079A85384CEE54EE">
  </body>
</html>


如何使用最新版本的Google Chrome获取PDF文件的URL?

5t7ly7z5

5t7ly7z51#

显然PDF现在是通过内部Chrome扩展chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/查看的。
除了使用window.location.href,您还可以使用document.querySelector("embed").baseURI

相关问题