GM.openInTab: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m Arantius moved page GM openInTab to GM.openInTab: Greasemonkey 4.0 |
Update for 4.0 |
||
Line 1: | Line 1: | ||
== Description == | == Description == | ||
This method opens the specified URL in a new tab. | This method opens the specified URL in a new tab. | ||
== Syntax == | |||
{{Function|GM.openInTab|url, open_in_background}} | |||
Compatibility: [[Version_history#4.0_2|Greasemonkey 4.0+]] | |||
=== Arguments === | === Arguments === | ||
Line 17: | Line 14: | ||
: <code>String</code> The URL to navigate the new tab to. | : <code>String</code> The URL to navigate the new tab to. | ||
; <code>open_in_background</code> | ; <code>open_in_background</code> | ||
: <code>Boolean</code> Optional: force tab to/to not open in a background tab. Default (unspecified) behavior honors Firefox configuration. | : <code>Boolean</code> Optional: force tab to/to not open in a background tab. Default (unspecified) behavior honors Firefox configuration. | ||
== Returns == | == Returns == | ||
<code>undefined</code> | |||
== Examples == | == Examples == | ||
<pre class='sample'> | <pre class='sample'> | ||
GM.openInTab("http://www.example.com/"); | |||
</pre> | </pre> | ||
[[Category:API_Reference|O]] | [[Category:API_Reference|O]] |
Latest revision as of 15:05, 3 November 2017
Description
This method opens the specified URL in a new tab.
Syntax
function GM.openInTab( url, open_in_background )
Compatibility: Greasemonkey 4.0+
Arguments
url
String
The URL to navigate the new tab to.open_in_background
Boolean
Optional: force tab to/to not open in a background tab. Default (unspecified) behavior honors Firefox configuration.
Returns
undefined
Examples
GM.openInTab("http://www.example.com/");