我有一些带有图像标签和一些 jQuery 的 HTML,如下所示:
<body>
<img id="MainImage" src="../img/MainImage.png" style="position: absolute;">
<script type="text/javascript">
$(document).ready(function() {
var $img = $("#MainImage");
$img.hide();
$('div').mousemove(function(e) {
if ($(this).attr('align') === 'center') {
// only show if the align attribute has value center
$img.fadeIn(0);
$img.offset({
top: e.pageY - $img.outerHeight()-2,
left: e.pageX - ($img.outerWidth()-18)
});
}
}).mouseleave(function() {
$img.fadeOut(250);
});
</script>
</body>
我也有这个清单文件,其中包含以下代码:
{
"name": "Div Image Test",
"version": "1.0",
"manifest_version": 2,
"permissions": [
"tabs", "http://*/*"
],
"content_scripts": [{
"matches": ["http://*/*"],
"js": ["js/CoreTest.html"],
"run_at": "document_end"
}]
}
这个脚本/扩展的用途是,每当用户将鼠标悬停在任何 div 上(使用 HTML 属性“align='center'”)时,鼠标光标旁边都会弹出一个图像......这已经有效,但我需要要做的是在安装扩展程序时将脚本/HTML 文件插入到每个网页的“正文”标签中。
我怎样才能做到这一点?
提前致谢。