Show video even without logged

Show video even without logged in pixeldrain

目前為 2025-02-24 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Show video even without logged
  3. // @namespace https://gf.qytechs.cn/users/821661
  4. // @match https://pixeldrain.com/*
  5. // @grant none
  6. // @version 1.1
  7. // @run-at document-start
  8. // @author hdyzen
  9. // @description Show video even without logged in pixeldrain
  10. // @license GPL-3.0-only
  11. // ==/UserScript==
  12.  
  13. Object.defineProperty(window, "viewer_data", {
  14. get: () => _viewer_data,
  15. set: value => {
  16. console.log(value.api_response.files);
  17.  
  18. for (const file of value.api_response.files) {
  19. console.log(file);
  20. file.allow_video_player = true;
  21. }
  22.  
  23. _viewer_data = value;
  24. },
  25. });

QingJ © 2025

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