我正在使用 Greasemonkey,我正在尝试编写自己的用户脚本。我已经得到了代码,但它没有“运行”,不知道为什么。
// ==UserScript==
// @name Image link
// @version 0.1
// @include http://*.*
// @run-at document-end
// ==/UserScript==
var img = document.getElementById('image'),
style = img.currentStyle || window.getComputedStyle(img, false),
link = style.backgroundImage.slice(4, -1);
alert(link);
我该怎么做才能让它真正发挥作用?