UserAgent-iPad

脚本用于开启移动视图

目前为 2023-03-01 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name UserAgent-iPad
  3. // @version 0.1.6
  4. // @match https://tv.cctv.com/1*
  5. // @match https://tv.cctv.com/2*
  6. // @match https://www.huya.com/*
  7. // @match https://www.douyu.com/*
  8. // @description 脚本用于开启移动视图
  9. // @grant none
  10. // @run-at document-start
  11. // @license CC
  12. // @namespace https://greasyfork.org/zh-CN/users/135090
  13. // @author
  14. // ==/UserScript==
  15. Object.defineProperty(navigator, 'plugins', {
  16. get: function () {
  17. return { length: 0 };
  18. }
  19. });
  20. 'use strict';
  21. Object.defineProperty(navigator,"userAgent",{value:"Mozilla/5.0 (iPad; CPU OS 12_4_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1",writable:false,configurable:false,enumerable:true});