1

我希望能够将一组预定义的图像添加到 FireFox 中的各种网站上——这是为了使个人扩展能够工作。

我想我应该能够在 GreaseMonkey 中做到这一点 - 在我继续沿着这条路走下去之前,任何人都可以确认我是否正在寻找正确的方向?

谢谢!

4

1 回答 1

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"
} );
于 2012-04-17T10:34:07.983 回答