I have a bookmarked shortcut that if you save it as a bookmark and select it, it increases the font size on your current page, more so the more you click the bookmark.
javascript:var%20p=document.getElementsByTagName('*');for(i=0;i%3Cp.length;i++)%7Bif(p%5Bi%5D.style.fontSize)%7Bvar%20s=parseInt(p%5Bi%5D.style.fontSize.replace(%22px%22,%22%22));%7Delse%7Bvar%20s=12;%7Ds+=2;p%5Bi%5D.style.fontSize=s+%22px%22%7D
This is the link for those interested, but I would love a way to make it a permanent link that loaded with every web page, until I select it off. The only way I know to activate it is to load the webpage, then click the bookmark link and I get zoomed font. Problem is whenever the page is reloaded or goes to the next webpage, font goes back to normal.
Any suggestions?
javascript:var%20p=document.getElementsByTagName('*');for(i=0;i%3Cp.length;i++)%7Bif(p%5Bi%5D.style.fontSize)%7Bvar%20s=parseInt(p%5Bi%5D.style.fontSize.replace(%22px%22,%22%22));%7Delse%7Bvar%20s=12;%7Ds+=2;p%5Bi%5D.style.fontSize=s+%22px%22%7D
This is the link for those interested, but I would love a way to make it a permanent link that loaded with every web page, until I select it off. The only way I know to activate it is to load the webpage, then click the bookmark link and I get zoomed font. Problem is whenever the page is reloaded or goes to the next webpage, font goes back to normal.
Any suggestions?