我正在使用以下代码创建Chrome扩展程序
的manifest.json:
{
"name": "Project",
"version": "1.0.0",
"manifest_version": 2,
"description": "Popup when website requires Log in",
"browser_action":{
"default_icon":"icon_19.png",
"default_popup":"Popup.html"
}
}
Popup.html:
<html>
<head></head>
<body>
<div class="plus" id="plu"></div>
<script src="inline.js"></script>
</body>
</html>
inline.js:
window.onload = function() {
document.getElementById('plu').onclick=popup;
}
function popup() {
var link = document.URL;
alert("This is the Link : ( " +link+ " )");
}
当我点击ID为'plu'的div时,它会获取popup.html的URL,但不会获取网站.please帮助。谢谢。
答案 0 :(得分:0)
此时的文档对象是指您的扩展程序的弹出窗口,因为您在popup.html中包含了该脚本。
如果要访问选项卡页面的DOM,则需要使用内容脚本。看看: