@grant: Difference between revisions
No edit summary |
Update for 4.0 |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
The <code>@grant</code> [[Metadata Block]] imperative controls which special [[API]]s (if any) your script uses. | |||
If no value is specified, <code>none</code> will be used by default. | |||
If any value or values are specified, ''only those'' API methods will be provided. | |||
== Examples == | == Examples == | ||
It's common for scripts | It's common for scripts not to use any special APIs at all. | ||
In that case, use <code>@grant none</code>. | |||
<!-- This doesn't apply in 4.0. http://bugzil.la/1353468 | |||
For such scripts, explicitly asking to be granted no special privileges means that the script will execute directly in the content page. | For such scripts, explicitly asking to be granted no special privileges means that the script will execute directly in the content page. | ||
This means no security sandbox, and none of its limitations, so accessing variables in the page just works, calling functions and reading their results also just works. | This means no security sandbox, and none of its limitations, so accessing variables in the page just works, calling functions and reading their results also just works. | ||
To do so, simply: | To do so, simply: | ||
--> | |||
<pre class='sample-good'> | <pre class='sample-good'> | ||
// ==UserScript== | // ==UserScript== | ||
// @name | // @name Grant None Example | ||
// @include | // @include http* | ||
// @grant | // @grant none | ||
// ==/UserScript== | // ==/UserScript== | ||
console.log('This script | console.log('This script uses no special privileges.'); | ||
</pre> | </pre> | ||
If you | If you specify no <code>@grant</code> at all, <code>none</code> will be assumed. | ||
<pre class='sample | <pre class='sample'> | ||
// ==UserScript== | // ==UserScript== | ||
// @name | // @name No Grant Example | ||
// @include | // @include http* | ||
// ==/UserScript== | // ==/UserScript== | ||
console.log('This script uses no special privileges, but doesn't declare that.'); | |||
console.log('This script | |||
</pre> | </pre> | ||
If you specify <code>none</code> and something else, <code>none</code> takes precedence. | |||
This can be confusing. | |||
Check for a <code>none</code> to remove if you're adding [[API]]s you intend to use. | |||
<pre class='sample-bad'> | <pre class='sample-bad'> | ||
// ==UserScript== | // ==UserScript== | ||
// @name | // @name Mixed Grant Example | ||
// @include http* | // @include http* | ||
// @grant none | |||
// @grant GM.openInTab | |||
// ==/UserScript== | |||
// Will fail, because `@grant none` was specified. | |||
GM.openInTab('http://www.example.org/'); | |||
</pre> | |||
If you ''do'' use one or more of Greasemonkey's [[API]]s, you must ask for it to be granted to your script: | |||
<pre class='sample-good'> | |||
// ==UserScript== | |||
// @name Grant Some Example | |||
// @include http* | |||
// @grant GM.getValue | |||
// @grant GM.setValue | |||
// ==/UserScript== | // ==/UserScript== | ||
(async ()=>{ | |||
let counter = await GM.getValue('counter', 0); | |||
console.log('This script has been run ' + counter + ' times.'); | console.log('This script has been run ' + counter + ' times.'); | ||
GM.setValue('counter', ++counter); | |||
})(); | |||
</pre> | </pre> | ||
In this case, the script is asking to be granted access to both [[GM.getValue]] and [[GM.setValue]], one on each <code>@grant</code> line. | |||
Specify the name of any Greasemonkey [[API]] to be granted access to it. | |||
(All scripts always get <code>GM.info</code> even without specifically requesting it.) | |||
== Compatibility Layer == | |||
Over time many of the Greasemonkey [[API]]s have been duplicated by web standards like [https://developer.mozilla.org/en/DOM/Storage DOM Storage]. | |||
If you only ever expect your script to operate on a single domain, you can use <code>@grant none</code> and these web APIs. | |||
Or, use a [[Metadata Block#@require|@require]] library to emulate Greasemonkey [[API]]s with those web APIs: | |||
<pre class='sample-good'> | <pre class='sample-good'> | ||
Line 83: | Line 94: | ||
When the shim compatibility layer works well enough for your script, this is the best of both worlds. | When the shim compatibility layer works well enough for your script, this is the best of both worlds. | ||
<!-- TODO: Restore as/when grant none works like it used to, in 4.x. | |||
== Scope == | == Scope == | ||
Line 97: | Line 109: | ||
</pre> | </pre> | ||
This code will save a jQuery reference (into <code>this</code> the script's global scope when running in the grant none mode), while removing it from <code>window</code> (the content global scope) and restoring anything originally stored there. | This code will save a jQuery reference (into <code>this</code>, the script's global scope when running in the grant none mode), while removing it from <code>window</code> (the content global scope) and restoring anything originally stored there. | ||
--> | |||
[[Category:Scripting_context]] | [[Category:Scripting_context]] |
Latest revision as of 16:08, 3 November 2017
The @grant
Metadata Block imperative controls which special APIs (if any) your script uses.
If no value is specified, none
will be used by default.
If any value or values are specified, only those API methods will be provided.
Examples
It's common for scripts not to use any special APIs at all.
In that case, use @grant none
.
// ==UserScript== // @name Grant None Example // @include http* // @grant none // ==/UserScript== console.log('This script uses no special privileges.');
If you specify no @grant
at all, none
will be assumed.
// ==UserScript== // @name No Grant Example // @include http* // ==/UserScript== console.log('This script uses no special privileges, but doesn't declare that.');
If you specify none
and something else, none
takes precedence.
This can be confusing.
Check for a none
to remove if you're adding APIs you intend to use.
// ==UserScript== // @name Mixed Grant Example // @include http* // @grant none // @grant GM.openInTab // ==/UserScript== // Will fail, because `@grant none` was specified. GM.openInTab('http://www.example.org/');
If you do use one or more of Greasemonkey's APIs, you must ask for it to be granted to your script:
// ==UserScript== // @name Grant Some Example // @include http* // @grant GM.getValue // @grant GM.setValue // ==/UserScript== (async ()=>{ let counter = await GM.getValue('counter', 0); console.log('This script has been run ' + counter + ' times.'); GM.setValue('counter', ++counter); })();
In this case, the script is asking to be granted access to both GM.getValue and GM.setValue, one on each @grant
line.
Specify the name of any Greasemonkey API to be granted access to it.
(All scripts always get GM.info
even without specifically requesting it.)
Compatibility Layer
Over time many of the Greasemonkey APIs have been duplicated by web standards like DOM Storage.
If you only ever expect your script to operate on a single domain, you can use @grant none
and these web APIs.
Or, use a @require library to emulate Greasemonkey APIs with those web APIs:
// ==UserScript== // @name Grant None Example, With Shim // @include http://www.example.com/* // @grant none // @require https://gist.githubusercontent.com/arantius/3123124/raw/grant-none-shim.js // ==/UserScript== var counter = GM_getValue('counter', 0); console.log('This script has been run ' + counter + ' times.'); GM_setValue('counter', ++counter);
This script will work the same as the example above, except that the grant none shim is providing API emulation with standard browser features. When the shim compatibility layer works well enough for your script, this is the best of both worlds.