Pikpak地区限制绕过

简单脚本,绕过Pikpak地区限制

  1. // ==UserScript==
  2. // @name Pikpak地区限制绕过
  3. // @name:en Bypass IP Restriction of Pikpak
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description 简单脚本,绕过Pikpak地区限制
  7. // @description:en A simple script to bypass IP restriction of Pikpak.
  8. // @author vvbbnn00
  9. // @match https://mypikpak.com/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=mypikpak.com
  11. // @license MIT
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. const originFetch = fetch;
  18. window.fetch = (...arg) => {
  19. if (arg[0].indexOf('area_accessible') > -1) {
  20. return new Promise(() => {
  21. throw new Error();
  22. });
  23. } else {
  24. return originFetch(...arg);
  25. }
  26. }
  27. })();

QingJ © 2025

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