B站秒升6级

让B站个人主页的等级,秒升LV6,让大家一键过瘾!!!哈哈!!!

目前為 2021-08-03 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name B站秒升6级
  3. // @icon https://www.bilibili.com/favicon.ico
  4. // @namespace https://greasyfork.org/zh-CN/scripts/430282
  5. // @version 0.3
  6. // @description 让B站个人主页的等级,秒升LV6,让大家一键过瘾!!!哈哈!!!
  7. // @author prayjourney
  8. // @match https://space.bilibili.com/*
  9. // @grant no
  10. // @supportURL https://gitee.com/zuiguangyin123/bilibili-doc/blob/master/myscript/b_lv6.js
  11. // @homepageURL https://gitee.com/zuiguangyin123/bilibili-doc/blob/master/myscript/b_lv6.js
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. window.onload = function() {
  17. let param = document.getElementById('h-gender');
  18. // 获取相邻的子元素a标签
  19. let alevel =param.nextElementSibling;
  20. // 设置属性完成修改
  21. alevel.setAttribute("lvl","6");
  22. }
  23. })();