我想使用JavaScript在网页中打开隐身模式

时间:2018-04-26 08:30:53

标签: javascript google-chrome incognito-mode

我正在使用网页或用户脚本(它不是关于Chrome扩展程序),根据我的要求,我想打开隐身模式。

这是我的JavaScript代码:

$('#google_alert').on('click', function(e)
{
    swal({
        title: "Review Us",
        text: "You will be redirected to review us on google",
        type: "warning",
        showCancelButton: true,
        confirmButtonColor: "#09a275",
        confirmButtonText: "Positive",
        cancelButtonText: "Negative",
        closeOnConfirm: false,
        closeOnCancel: true
    }, function(isConfirm)
    {
        if(isConfirm)
        {
            chrome.windows.create({"url": "http://www.google.com", "incognito": true});

        swal("Thank you", "Thank you reviewing us.", "success");
        }
        else
        {
            $("#review-modal").modal('show');
        }
    });
    return false;
});
  

响应:ReferenceError:未定义chrome

这是我正在做的程序,

  1. 点击网页上的Google评论选项,
  2. 它会将用户重定向到Google审核页面,
  3. 谷歌要求登录,
  4. 用户输入凭证并提供审核
  5. 返回网页。
  6. 您可以在此处看到,无需将用户的ID和密码保存到浏览器中。

0 个答案:

没有答案