-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathcontentscript.js
39 lines (34 loc) · 965 Bytes
/
contentscript.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { getIsBrowserPrerenderBroken } from '../../shared/modules/browser-runtime.utils';
import shouldInjectProvider from '../../shared/modules/provider-injection';
import {
initStreams,
onDisconnectDestroyStreams,
} from './streams/provider-stream';
import {
isDetectedPhishingSite,
initPhishingStreams,
} from './streams/phishing-stream';
import {
initializeCookieHandlerSteam,
isDetectedCookieMarketingSite,
} from './streams/cookie-handler-stream';
const start = () => {
if (isDetectedPhishingSite) {
initPhishingStreams();
return;
}
if (isDetectedCookieMarketingSite) {
initializeCookieHandlerSteam();
}
if (shouldInjectProvider()) {
initStreams();
if (document.prerendering && getIsBrowserPrerenderBroken()) {
document.addEventListener('prerenderingchange', () => {
onDisconnectDestroyStreams(
new Error('Prerendered page has become active.'),
);
});
}
}
};
start();