FF: suppress pingCS() errors in browser console
This commit is contained in:
parent
2687d1e167
commit
22a2086535
|
@ -190,7 +190,12 @@ contextMenus = Object.assign({
|
||||||
cs.matches.some(match => {
|
cs.matches.some(match => {
|
||||||
if ((match == ALL_URLS || url.match(match))
|
if ((match == ALL_URLS || url.match(match))
|
||||||
&& (!url.startsWith('chrome') || url == NTP)) {
|
&& (!url.startsWith('chrome') || url == NTP)) {
|
||||||
chrome.tabs.sendMessage(id, PING, pong => !pong && injectCS(cs, id));
|
chrome.tabs.sendMessage(id, PING, pong => {
|
||||||
|
if (!pong) {
|
||||||
|
injectCS(cs, id);
|
||||||
|
}
|
||||||
|
ignoreChromeError();
|
||||||
|
});
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user