Post Reply 
has anyone using The Cloud WiFi experienced a malicious change to their bookmarks?
12-26-2015, 11:49 AM
Post: #7
RE: has anyone using The Cloud WiFi experienced a malicious change to their bookmarks?
Just for future reference, this is the icon-fixing bookmarklet I've used in the past. Easiest way to use this is to make a new bookmark of any site, then edit it and past in this as a one-liner. Adjust the domain name from stackoverflow.com to whichever domain you want to fix. Then, visit the site with the broken icon, and from that page visit the new bookmark you just made. It should fixup the icon.

Code:
javascript:(function() {
    var link = document.createElement('link');
    link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = 'http://www.stackoverflow.com/favicon.ico';
    document.getElementsByTagName('head')[0].appendChild(link);
}());
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: has anyone using The Cloud WiFi experienced a malicious change to their bookmarks? - EdS2 - 12-26-2015 11:49 AM



User(s) browsing this thread: 1 Guest(s)