GM.getResourceText: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Reverted edits by 86.126.117.107 (Talk) to last revision by Arantius)
No edit summary
Line 28: Line 28:
<pre class='sample'>
<pre class='sample'>
// ==UserScript==
// ==UserScript==
// @resource prototype http://www.example.com/prototype.js
// @resource prototype http://1.bp.blogspot.com/_ejvSFUB_LBU/TIMOMxMUngI/AAAAAAAADHs/d5aalVCV1GA/s1600/lord-ganesh.JPG
// ==/UserScript==
// ==/UserScript==



Revision as of 06:34, 15 December 2010


Description

Given a defined @resource, this method returns it as a string.

Compatibility: Greasemonkey 0.8.0+

Syntax

function GM_getResourceText( resourceName )

Arguments

resourceName
String The 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://1.bp.blogspot.com/_ejvSFUB_LBU/TIMOMxMUngI/AAAAAAAADHs/d5aalVCV1GA/s1600/lord-ganesh.JPG
// ==/UserScript==

var prototypeSource = GM_getResourceText("prototype");

See Also