uweb/en/searchurl/sitejs/www.bing.com.js

16 lines
380 B
JavaScript
Raw Normal View History

{
const oFetch = window.fetch;
window.fetch = function(url,options){
if("https://www.bing.com/turing/conversation/create"==url){
2023-04-01 13:07:20 +00:00
url = "https://mybing2.xn--xyza.top/Create";
options = {
2023-04-03 09:51:28 +00:00
credentials: 'include',
2023-04-01 07:15:10 +00:00
headers:{},
};
}
return oFetch(url,options)
.then((res)=>{return res;})
.catch((err)=>{return err;});
}
}