GM.openInTab: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Text replace - "</pre>}}" to "</pre>")
(Update for 4.0)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:GM_openInTab}}
== Description ==
== Description ==


This [[API_reference|API]] method opens the specified URL in a new background tab.  Foreground loading may be globally overridden by setting the Mozilla preference <code>browser.tabs.loadInBackground</code> to <code>false</code> in [http://kb.mozillazine.org/About:config about:config].
This method opens the specified URL in a new tab.


== Syntax ==
== Syntax ==


'''GM_openInTab(''' ''url'' ''')'''
{{Function|GM.openInTab|url, open_in_background}}


:Value: Function
Compatibility: [[Version_history#4.0_2|Greasemonkey 4.0+]]
:Returns: undefined
:Compatibility: [[Version_history#0.5_beta|Greasemonkey 0.5b+]]


:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;"
=== Arguments ===
|+ Parameters
!style="background:#CC9900;"|'''Properties'''
|-
| <code><span style="background:#FFFFE0;">[[#url |url]]</span></code>
|}
:* All properties are optional except [[#url|url]].


=== Properties ===
; <code>url</code>
----
: <code>String</code> The URL to navigate the new tab to.
==== <code>url</code> ====
; <code>open_in_background</code>
:Value: String
: <code>Boolean</code> Optional: force tab to/to not open in a background tab.  Default (unspecified) behavior honors Firefox configuration.
:Usage: <code>'''url''' = "<nowiki>http://www.greasespot.net/</nowiki>";</code>


== Returns ==
<code>undefined</code>


== Examples ==
== Examples ==
<pre class='sample'>
<pre class='sample'>
GM_openInTab("http://www.greasespot.net/");
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/");