GM_getResourceText
From GreaseSpot Wiki
Contents |
Description
Given a defined @resource, this method returns it as a string.
Compatibility: Greasemonkey 0.8.0+
Syntax
function GM_getResourceText( resourceName )
Arguments
- resourceName
-
StringThe name provided when the @resource was defined, follow that link for valid naming restrictions.
Returns
String
Raises
Throws an Error when the named resource does not exist.
Examples
// ==UserScript==
// @resource prototype http://www.example.com/prototype.js
// ==/UserScript==
var prototypeSource = GM_getResourceText("prototype");