You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Determine wheter the incognito mode of Google Chrome is available or not. * * @param callback Anonymous function executed when the availability of the incognito mode has been checked. */functionisIncognito(callback){varfs=window.RequestFileSystem||window.webkitRequestFileSystem;if(!fs){callback(false);}else{fs(window.TEMPORARY,100,callback.bind(undefined,false),callback.bind(undefined,true));}}
原理
利用开启隐身模式的chrome浏览器不能通过 requestFileSystem Api 访问系统文件的特点作为hack依据进行检测。
检测函数
How to use
The text was updated successfully, but these errors were encountered: