CentBrowser Forum
About extension icon can't change color - Printable Version

+- CentBrowser Forum (https://www.centbrowser.net/en)
+-- Forum: Members Area (https://www.centbrowser.net/en/forumdisplay.php?fid=3)
+--- Forum: General Discuss (https://www.centbrowser.net/en/forumdisplay.php?fid=5)
+--- Thread: About extension icon can't change color (/showthread.php?tid=28)



About extension icon can't change color - Admin - 07-23-2015

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.


RE: About extension icon can't change color - Admin - 08-01-2015

Solved in version 1.3.7.16