在chrome扩展中,如何使用browser_action(popup.html)获取网站的网址?

时间:2013-04-02 14:44:22

标签: javascript google-chrome google-chrome-extension popup browser-action

我正在使用以下代码创建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帮助。谢谢。

1 个答案:

答案 0 :(得分:0)

此时的文档对象是指您的扩展程序的弹出窗口,因为您在popup.html中包含了该脚本。

如果要访问选项卡页面的DOM,则需要使用内容脚本。看看:

http://developer.chrome.com/extensions/content_scripts.html