我正在创建一个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。
1条答案
按热度按时间xcitsw881#
此时的document对象指的是扩展的弹出窗口,因为您在popup.html中包含了脚本。
如果你想访问标签页的DOM,你需要使用内容脚本。看看:
http://developer.chrome.com/extensions/content_scripts.html