Bitdefender Total Security 2016 and the Avast Online Security browser extension for Chrome (and possibly other browsers) causes a conflict when using Google
http://i.imgur.com/mloO6hR.png
This was really annoying and I like having two sources to verify websites so I made an easy fix.
You can fix it by adding a small css snip-it of code to the Avast Security extension
1. You have to get the extension ID by going to chrome settings then click extensions. Find Avast and copy the ID text. For example mine was
gomekmidlodglbbmalcneegieacbdmki
(Yours wont be the same)
2.Then open explorer and paste the text below into the top bar.
%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\
3.Then find the folder with the ID of Avast. Open the folder with numbers on it/version number.
Example:
11.1.0.210_0
4.Then create a new file called “fix.css” (make sure to remove the old file extension, ex .txt) then open “manifest.json”. Add
"css": ["fix.css"],
On a new line after
"js": [ "common/scripts/ava_connector.js" ],
It should look something like this after
"content_scripts": [ {
"js": [ "common/scripts/ava_connector.js" ],
"css": ["fix.css"],
"matches": [ "*://*.avast.com/*" ]
} ],
5.Then open fix.css and add
a[href*="trafficlight.bitdefender.com/info?url="] + span.wrc_icon {
display: none !important;
}
6. Then restart Chrome and the bug should be fixed!
http://i.imgur.com/QPsnvAR.png
Hopefully Avast fixes this in the future but for now this patch should work.