We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1498281 commit 67f32b2Copy full SHA for 67f32b2
src/content_scripts/common/utils.js
@@ -279,7 +279,7 @@ function scrollIntoViewIfNeeded(elm, ignoreSize) {
279
function isElementDrawn(e, rect) {
280
var min = isEditable(e) ? 1 : 4;
281
rect = rect || e.getBoundingClientRect();
282
- return rect.width > min && rect.height > min;
+ return rect.width > min && rect.height > min && parseFloat(getComputedStyle(e).opacity) > 0.1;
283
}
284
285
/**
0 commit comments