我正在使用网页或用户脚本(它不是关于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
这是我正在做的程序,
您可以在此处看到,无需将用户的ID和密码保存到浏览器中。