我的Greasemonkey脚本将无法安装

时间:2012-04-02 12:10:13

标签: javascript greasemonkey

我要写一个小的Greasemonkey脚本 这是我的测试代码:

// ==UserScript==
// @name test
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @namespace brak
// @description test
// @include http://forum.php.pl/*
// ==/UserScript==

$(document).ready(function(){
alert("OK");
});

但它不起作用。

我尝试从 userscripts.org 下载一些随机脚本,当我从网站上安装它时它起作用了。但是,当我将源代码放入script.js文件然后单击"添加新脚本" - 它没有。

请帮忙。

2 个答案:

答案 0 :(得分:3)

  

当我将源代码放入script.js文件然后单击“添加新脚本”时 - 它没有。

文件名必须以.user.js结尾。因此,请将您的测试文件重命名为test.user.js或其他内容。然后你就可以安装了它。

答案 1 :(得分:0)

您可以尝试更改

// @include <a href="http://forum.php.pl/*" target="_blank">http://forum.php.pl/*</a>

要:

// @include http://forum.php.pl/*