diff --git a/manage/manage.js b/manage/manage.js index 5b526b97..81ad0868 100644 --- a/manage/manage.js +++ b/manage/manage.js @@ -307,7 +307,7 @@ function getFaviconImgSrc() { let favicon = ''; if (type === 'domains') { favicon = GET_FAVICON_URL + targetValue; - } else if (targetValue.startsWith('chrome-extension:') || targetValue.startsWith('moz-extension:')) { + } else if (targetValue.includes('chrome-extension:') || targetValue.includes('moz-extension:')) { favicon = OWN_ICON; } else if (type === 'regexps') { favicon = targetValue.replace(regexpRemoveNegativeLookAhead, '').match(regexpMatchRegExp);