在Chrome扩展程序中,如何通过browser_action(popup.html)获取网站的URL?

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

我正在创建一个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,但不是网站的URL。

xcitsw88

xcitsw881#

此时的document对象指的是扩展的弹出窗口,因为您在popup.html中包含了脚本。
如果你想访问标签页的DOM,你需要使用内容脚本。看看:
http://developer.chrome.com/extensions/content_scripts.html

相关问题