Font Size

This extension adds buttons to Enlarge/Reduce the Font Size (Not Zoom) on the Toolbar.

Current Version is here.
https://addons.mozilla.org/en-US/firefox/addon/9872
fontsize

and x2 ()

Code

var FontSize_Extension = {

enlarge: function()
{
	if( ZoomManager.useFullZoom )
	{
		ZoomManager.useFullZoom = false;
		FullZoom.enlarge();
		ZoomManager.useFullZoom = true;
	}
	else
	{
		FullZoom.enlarge();
	}
},

enlarge2: function()
{
	if( ZoomManager.useFullZoom )
	{
		ZoomManager.useFullZoom = false;
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		ZoomManager.useFullZoom = true;
	}
	else
	{
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
		FullZoom.enlarge();
	}
},

reduce: function()
{
	if( ZoomManager.useFullZoom )
	{
		ZoomManager.useFullZoom = false;
		FullZoom.reduce();
		ZoomManager.useFullZoom = true;
	}
	else
	{
		FullZoom.reduce();
	}
},

reset: function()
{
	FullZoom.reset();
}

}

Versions

0.1.20090531.1
0.1.20081205.1