我想在元数据中为新的 Greasemonkey 脚本添加一个默认条目。
目前,当您使用New UserScript...菜单时,您会看到这样的对话框(我填写了最少的必填字段,剪贴板是空的):
这给出了一个像这样的新脚本:
// ==UserScript==
// @name _Sample default Greasemonkey script
// @namespace _pc
// @include http://stackoverflow.com/questions/*
// @version 1
// ==/UserScript==
但是,我想要@require
jQuery@author
并向每个默认脚本添加一个字段。因此,默认代码如下所示:
// ==UserScript==
// @name _Sample default Greasemonkey script
// @namespace _pc
// @include http://stackoverflow.com/questions/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @author me
// @version 1
// ==/UserScript==
我该怎么做呢?当我编辑greasemonkey.jar(在文件夹扩展名中)并添加以下行时:@require http://[link to jquery from google]
它不起作用并且Greasemonkey 有问题打开(¿文件?)。
如何更改默认的元数据块指令?