我希望能够在FireFox中的各个网站上添加预定义的图像集 - 这是为了使个人扩展能够正常工作。
我想我应该能够在GreaseMonkey中做到这一点 - 在我走这条路之前,有没有人可以确认我是否正朝着正确的方向前进?
谢谢!
答案 0 :(得分:2)
是的,你可以用各种方式做到这一点 这是一个完整的工作脚本,可以帮助您入门:
// ==UserScript==
// @name _Add an image to a web page
// @include http://stackoverflow.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
$("body").append (
'<img id="myNewImage" src="http://i37.photobucket.com/albums/e77/kpeaton/unicorn.jpg">'
);
$("#myNewImage").css ( {
position: "fixed",
width: "128px",
height: "128px",
top: "0",
left: "0"
} );