How does Facebook disable the browser's integrated Developer Tools?

后端 未结 12 1175
予麋鹿
予麋鹿 2020-11-22 06:12

So apparently because of the recent scams, the developer tools is exploited by people to post spam and even used to \"hack\" accounts. Facebook has blocked the developer too

12条回答
  •  再見小時候
    2020-11-22 07:06

    I would go along the way of:

    Object.defineProperty(window, 'console', {
      get: function() {
    
      },
      set: function() {
    
      }
    });
    

提交回复
热议问题