Greasy Fork 还支持 简体中文。

FF pe FB by Mandy

Removes https links of facebook from frendzforum

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name           FF pe FB by Mandy
// @include        http://*
// @version        1.0.5e
// @namespace https://greasyfork.org/users/1584
// @description Removes https links of facebook from frendzforum
// ==/UserScript==


	var links = document.getElementsByTagName('img');			
			for(var i=links.length; i--;) {
				var img_ = links[i].src;
					img_ = img_.replace('https://m.ak.fbcdn.net/', 'http://m.ak.fbcdn.net/');
					links[i].src = img_;
					}