-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.ts
74 lines (74 loc) · 1.41 KB
/
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
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
export const manifest: chrome.runtime.ManifestV3 = {
manifest_version: 3,
name: "Vicro",
short_name: "Vicro",
version: "0.0.1",
action: {
default_title: "Vicro Developer tool",
default_popup: "index.html",
default_icon: {
16: "logo.png",
32: "logo.png",
48: "logo.png",
128: "logo.png",
},
},
description: "⚡️ Opinionated Vite - Vue Chrome Extension Starter Template ⚡️",
icons: {
16: "logo.png",
32: "logo.png",
48: "logo.png",
128: "logo.png",
},
author: "thecodeorigin",
background: {
service_worker: "background.js",
},
content_scripts: [
{
matches: ["<all_urls>"],
css: [],
js: ["inject.js"],
},
],
host_permissions: ["<all_urls>"],
permissions: [
"activeTab",
"alarms",
"background",
"bookmarks",
"browsingData",
"clipboardRead",
"clipboardWrite",
"contentSettings",
"contextMenus",
"cookies",
"debugger",
"desktopCapture",
"downloads",
"fontSettings",
"gcm",
"geolocation",
"identity",
"identity.email",
"idle",
"management",
"nativeMessaging",
"notifications",
"pageCapture",
"power",
"privacy",
"proxy",
"scripting",
"search",
"sessions",
"storage",
"tabCapture",
"tabGroups",
"tabs",
"topSites",
"unlimitedStorage",
"webNavigation",
"webRequest",
],
};