Author Topic: [Advanced] Bitdefender and Avast conflict FIX  (Read 1941 times)

0 Members and 1 Guest are viewing this topic.

REDACTED

  • Guest
[Advanced] Bitdefender and Avast conflict FIX
« on: January 07, 2016, 12:49:09 AM »
Bitdefender Total Security 2016 and the Avast Online Security browser extension for Chrome (and possibly other browsers) causes a conflict when using Google

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
Code: [Select]
gomekmidlodglbbmalcneegieacbdmki (Yours wont be the same)

2.Then open explorer and paste the text below into the top bar.
Code: [Select]
%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:
Code: [Select]
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
Code: [Select]
"css": ["fix.css"],On a new line after
Code: [Select]
"js": [ "common/scripts/ava_connector.js" ],It should look something like this after
Code: [Select]
   "content_scripts": [ {
      "js": [ "common/scripts/ava_connector.js" ],
       "css": ["fix.css"],
      "matches": [ "*://*.avast.com/*" ]
   } ],


5.Then open fix.css and add
Code: [Select]
a[href*="trafficlight.bitdefender.com/info?url="] + span.wrc_icon {
    display: none !important;
}


6. Then restart Chrome and the bug should be fixed!



Hopefully Avast fixes this in the future but for now this patch should work.  :D
« Last Edit: January 07, 2016, 12:55:25 AM by Tidal5 »

Offline Eddy

  • Avast Evangelist
  • Maybe Bot
  • ***
  • Posts: 31078
  • Watching (over?) you
    • Malware removal, Biljart and other things.
Re: [Advanced] Bitdefender and Avast conflict FIX
« Reply #1 on: January 07, 2016, 01:38:26 PM »
Thank you for sharing the information.
I believe many people will find it useful.