www.bing.com.js 380 B

12345678910111213141516
  1. {
  2. const oFetch = window.fetch;
  3. window.fetch = function(url,options){
  4. if("https://www.bing.com/turing/conversation/create"==url){
  5. url = "https://mybing2.xn--xyza.top/Create";
  6. options = {
  7. credentials: 'include',
  8. headers:{},
  9. };
  10. }
  11. return oFetch(url,options)
  12. .then((res)=>{return res;})
  13. .catch((err)=>{return err;});
  14. }
  15. }