SiteScrubber

Scrub site of ugliness and ease the process of downloading from multiple file hosting sites!

SiteScrubber 스크립트가 다음 사유로 삭제되었습니다: 신고 #18572.

작성자가 제출한 이의 제기 사유:

Only 2 external JS libraries are injected by the script if requested. Both from reputable sources.

addJQuery() {
    const s = document.createElement("script");
    s.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js";
    const targ =
      this.document.head || this.document.body || this.document.documentElement;
    targ.appendChild(s);
  }

https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js Loading jQuery into page if required, from a trusted source.

  addGoogleRecaptchaJS() {
    const script = this.document.createElement("script");
    script.src = "https://www.google.com/recaptcha/api.js";
    this.document.body.appendChild(script);
  }

https://www.google.com/recaptcha/api.js Loading Google's reCaptcha from Google.com itself.

Other mentions of *.js scripts are hardcoded strings that certain sites check for, so this was handled by hardcoded the string interpretation for the script to use to automate certain sites.

이 이의 제기의 결과로 관리자가 이 스크립트를 복구했습니다.

https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js is allowed. I've added https://www.google.com/recaptcha/api.js to the allowed list. There don't seem to be any other injections here.