-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdevtools.ts
99 lines (91 loc) · 2.71 KB
/
devtools.ts
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { safe } from './utils/error';
import { getConfig } from './utils/storage';
import { Buffer } from 'buffer';
const attach = async (tabId: number) => {
try {
const target = (await chrome.debugger.getTargets().catch(() => [])).find(
(s) => s.tabId == tabId,
);
if (target?.attached) {
await chrome.debugger.detach({ tabId });
}
} catch (e) {
console.log(e, `zzo`);
}
await chrome.debugger.attach(
{
tabId,
},
`1.3`,
);
await chrome.debugger.sendCommand({ tabId }, `Fetch.enable`, {
patterns: [
{
urlPattern: `http*`,
resourceType: `Document`,
requestStage: `Response`,
},
],
});
const parser = new DOMParser();
chrome.debugger.onEvent.addListener(async (source, method, _params) => {
const params = _params as {
requestId: string;
request: {
url: string;
urlFragment?: string;
method: string;
headers: Record<string, string>;
};
resourceType: string;
responseStatusCode?: number;
responseStatusText?: string;
responseHeaders?: { name: string; value: string }[];
networkId?: string;
redirectedRequestId?: string;
};
if (source.tabId != tabId || method != `Fetch.requestPaused`) return;
const { requestId } = params;
const response = (await chrome.debugger.sendCommand(
{ tabId },
`Fetch.getResponseBody`,
{ requestId },
)) as { body: string; base64Encoded: boolean };
let bodyText = response.base64Encoded
? Buffer.from(response.body, `base64`).toString('utf-8')
: response.body;
const lowerText = bodyText.toLowerCase();
if (lowerText.includes(`content-security-policy`)) {
const html = safe(
() => parser.parseFromString(bodyText, `text/html`),
() => {},
);
if (html) {
html.querySelectorAll(`meta`).forEach((meta) => {
if (
meta.getAttribute('http-equiv')?.toLowerCase() ==
'content-security-policy'
) {
meta.remove();
}
});
// if has <!DOCTYPE html>, will miss it
// if not has <html> tag, will add it
bodyText = html.documentElement.outerHTML;
}
}
await chrome.debugger.sendCommand({ tabId }, `Fetch.fulfillRequest`, {
requestId,
responseCode: params.responseStatusCode ?? 200,
responseHeaders: params.responseHeaders,
body: Buffer.from(bodyText, `utf-8`).toString(`base64`),
});
});
};
(async () => {
const { tabId } = chrome.devtools.inspectedWindow;
const tab = await chrome.tabs.get(tabId);
if (tab.url?.startsWith(`http`) && (await getConfig()).csp_html_disabled) {
await attach(tabId);
}
})();