修改浏览器UA平台为桌面端

作用是修改浏览器UA平台为桌面端

// ==UserScript==
// @name 修改浏览器UA平台为桌面端
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 作用是修改浏览器UA平台为桌面端
// @author xk
// @match https:///
// @grant none
// @include *
// @run-at document-start
// @license MIT
// ==/UserScript==
 
(function() {
'use strict';
Object.defineProperty(navigator,'platform',{get:function(){return 'Windows';}});
Object.defineProperty(navigator,'userAgent',{get:function(){return 'User-Agent, Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11';}});
// Your code here...
})();