XDA width fix

当前为 2020-08-09 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name XDA width fix
  3. // @namespace https://space.bilibili.com/6727237
  4. // @version 0.1
  5. // @author 尺子上的彩虹
  6. // @match https://*.xda-developers.com/*
  7. // @grant none
  8. // @description:zh-cn XDA header width fix
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. document.getElementsByTagName('header')[0].style.width='zpx';
  13. })();