Songsterr Premium - songsterr.com

Unlock all premium features on Songsterr

目前为 2023-06-23 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Songsterr Premium - songsterr.com
  3. // @namespace https://github.com/Thibb1
  4. // @match https://songsterr.com/*
  5. // @match https://www.songsterr.com/*
  6. // @grant none
  7. // @version 1.2.2
  8. // @author Thibb1
  9. // @description Unlock all premium features on Songsterr
  10. // @license GPL
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15. const a = document.body.querySelector('#state');
  16. a.textContent = a.textContent.replace('hasPlus":false', 'hasPlus":true');
  17. window.addEventListener('load', () => {
  18. document.querySelector('#showroom').removeAttribute('class');
  19. if (navigator.userAgentData.mobile) {
  20. document.body.querySelector('#showroom_header').removeAttribute('class');
  21. }
  22. });
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址