GM.getResourceUrl: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m Arantius moved page GM getResourceURL to GM.getResourceUrl: Greasemonkey 4.0 |
Update for 4.0 |
||
Line 1: | Line 1: | ||
== Description == | == Description == | ||
Given a defined [[Metadata Block#.40resource|@resource]], this method returns it as a URL. | Given a defined [[Metadata Block#.40resource|@resource]], this method returns it as a URL. | ||
Compatibility: [[Version_history# | Compatibility: [[Version_history#4.0_2|Greasemonkey 4.0+]] | ||
== Syntax == | == Syntax == | ||
{{Function| | {{Function|GM_getResourceUrl|resourceName}} | ||
=== Arguments === | === Arguments === | ||
Line 18: | Line 16: | ||
=== Returns === | === Returns === | ||
A [[Promise]], rejected on failure and resolved with a <code>String</code> URL on success. | |||
Treat the result as opaque string. | |||
It will work where you need a URL (for a <code><link></code> or <code><style></code> for CSS, for an <code><img></code> tag, or similar). | |||
== Examples == | == Examples == | ||
Line 45: | Line 24: | ||
<pre class='sample'> | <pre class='sample'> | ||
// ==UserScript== | // ==UserScript== | ||
// @resource | // @name Image resource example | ||
// @resource logo ../icons/laptop.png | |||
// @grant GM.getResourceUrl | |||
// ==/UserScript== | // ==/UserScript== | ||
(async function() { | |||
img.src = | let img = document.createElement("img"); | ||
img.src = await GM.getResourceUrl("logo"); | |||
document.body.appendChild(img); | document.body.appendChild(img); | ||
})(); | |||
</pre> | </pre> | ||
<!-- Not in 4.0! | |||
== See Also == | == See Also == | ||
* [[GM_getResourceText]] | * [[GM_getResourceText]] | ||
--> | |||
[[Category:API_Reference|G]] | [[Category:API_Reference|G]] |
Revision as of 14:59, 3 November 2017
Description
Given a defined @resource, this method returns it as a URL.
Compatibility: Greasemonkey 4.0+
Syntax
function GM_getResourceUrl( resourceName )
Arguments
resourceName
String
The name provided when the @resource was defined, follow that link for valid naming restrictions.
Returns
A Promise, rejected on failure and resolved with a String
URL on success.
Treat the result as opaque string.
It will work where you need a URL (for a <link>
or <style>
for CSS, for an <img>
tag, or similar).
Examples
// ==UserScript== // @name Image resource example // @resource logo ../icons/laptop.png // @grant GM.getResourceUrl // ==/UserScript== (async function() { let img = document.createElement("img"); img.src = await GM.getResourceUrl("logo"); document.body.appendChild(img); })();