FF pe FB by Mandy

Removes https links of facebook from frendzforum

  1. // ==UserScript==
  2. // @name FF pe FB by Mandy
  3. // @include http://*
  4. // @version 1.0.5e
  5. // @namespace https://gf.qytechs.cn/users/1584
  6. // @description Removes https links of facebook from frendzforum
  7. // ==/UserScript==
  8.  
  9.  
  10. var links = document.getElementsByTagName('img');
  11. for(var i=links.length; i--;) {
  12. var img_ = links[i].src;
  13. img_ = img_.replace('https://m.ak.fbcdn.net/', 'http://m.ak.fbcdn.net/');
  14. links[i].src = img_;
  15. }

QingJ © 2025

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