-
Notifications
You must be signed in to change notification settings - Fork 55
/
manifest.ts
39 lines (39 loc) · 847 Bytes
/
manifest.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
export const manifest: chrome.runtime.ManifestV3 = {
manifest_version: 3,
name: 'My Fingerprint',
description: 'Custom your browser fingerprint',
// description: '__MSG_extension_description__',
version: '2.2.4',
permissions: [
'storage',
'tabs',
'activeTab',
'webNavigation',
'scripting',
'declarativeNetRequest',
],
host_permissions: [
'<all_urls>',
],
icons: {
128: 'logo.png',
},
action: {
default_popup: "src/popup/index.html",
},
background: {
service_worker: "src/background/index.ts",
},
content_scripts:[
{
world: "ISOLATED",
matches: ["<all_urls>"],
js: ["src/scripts/content.ts"],
run_at: "document_start",
match_about_blank: true,
// all_frames: true,
},
],
web_accessible_resources:[]
}
export default manifest