修改 navigator.platform 的值 油猴插件


// ==UserScript==
// @name 修改 navigator.platform 的值
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http:///
// @grant none

/********脚本生效地址 -- 开始********/
// @include *
/********脚本生效地址 -- 结束********/

/********脚本将尽可能快地注入 -- 开始********/
//@run-at document-start
/********脚本将尽可能快地注入 -- 结束********/

// ==/UserScript==

(function() {
'use strict';
Object.defineProperty(navigator,'platform',{get:function(){return 'Android';}});
// Your code here...
})();


你可能感兴趣的:(修改 navigator.platform 的值 油猴插件)