Functions/Add-ParamInternetBrowser.ps1

function Add-ParamInternetBrowser {
<#
.Notes
    AUTHOR: Skyler Hart
    CREATED: 10/18/2017 12:55:22
    LASTEDIT: 10/18/2017 14:37:37
    KEYWORDS:
.LINK
    https://wanderingstag.github.io
#>

    $paramIBText = @"
        [Parameter(Mandatory=`$false)]
        [Switch]`$Chrome,
 
        [Parameter(Mandatory=`$false)]
        [Switch]`$Edge,
 
        [Parameter(Mandatory=`$false)]
        [Switch]`$Firefox,
 
        [Parameter(Mandatory=`$false)]
        [Switch]`$InternetExplorer
"@

    $psise.CurrentFile.Editor.InsertText($paramIBText)
}