views:

75

answers:

1

Hi,

I tried to load a copy of jQuery 1.3.2 from jquery.com (because it seems 1.4.0+ aren't treated too well by GM) using @require.

Even after I uninstall and reinstall the script, GM does not copy jquery-1.3.2.js to my gm_scripts folder like it should. Tried this almost 10 times today.

Also, when I click on "Manage Scripts", it shows my script as running on * even though I've added @include for http://www.catholicon.in/*

I'm using the latest updates on both FF 3.6 and GM 0.8

Thanks

A: 

As Ryan said, paste the headers here.

Since neither the @include nor the @require statement are taking, it suggests that the headers are malformed.

Even a single extra space can do it. Make sure that the header block is fully left aligned -- starts at column 1 -- and has only 1 space after the leading slashes, like so:

// ==UserScript==
// @name            ...
// @namespace       ...
// @description     ...
// @include         ...
// @require         ...
// ==/UserScript==
Brock Adams