Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
About extension icon can't change color
#1
If you turned on "Disable HTML5 canvas fingerprinting" in version 1.2.13.10, you may find some extensions(such as Ghostery) can't change toolbar icon color.The icon color is always gray.
This is because disabling canvas data reading conflicts with chrome.browserAction.setIcon function.Following is the source code causing the issue:
Code:
bool HTMLCanvasElement::originClean() const
{
   if (document().settings() && document().settings()->disableReadingFromCanvas())
       return false;
   return m_originClean;
}

We have solved this issue and will include it in the next release.This issue doesn't affect the functionality of the extension.
Reply
#2
Solved in version 1.3.7.16
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)