去年,我开发了一个谷歌扩展,工作在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?
1条答案
按热度按时间5t7ly7z51#
显然PDF现在是通过内部Chrome扩展
chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/
查看的。除了使用
window.location.href
,您还可以使用document.querySelector("embed").baseURI