-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
100 lines (100 loc) · 2.82 KB
/
manifest.json
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
100
{
"manifest_version": 3,
"name": "NeoExamShield",
"version": "1.0.1",
"description": "To prevent malpractice, identifies and blocks third-party browser extensions during tests on the Iamneo portal. Also provides tools for AI responses, custom copy/paste, and keeping the window active.",
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [{
"resources": ["data/lib/showdown.min.js"],
"matches": ["<all_urls>"]
}],
"permissions": [
"management",
"tabs",
"activeTab",
"contextMenus",
"clipboardWrite",
"clipboardRead",
"storage",
"scripting",
"downloads",
"windows"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"data/inject/rightclickmenu.js",
"data/inject/isolated.js",
"data/inject/content.js",
"data/inject/main.js",
"data/inject/chatbot.js",
"data/lib/showdown.min.js",
"contentScript.js"
],
"exclude_matches": [
"*://*.discord.com/*",
"*://*.figma.com/*"
]
},
{
"js": ["data/inject/screenshare.js"],
"run_at": "document_start",
"all_frames": true,
"matchOriginAsFallback": true,
"world": "MAIN",
"matches": ["https://*.examly.io/*"],
"exclude_matches": ["https://*.examly.io/result*"]
}
],
"commands": {
"search-mcq": {
"suggested_key": {
"default": "Alt+Shift+X"
},
"description": "Solve MCQs"
},
"search": {
"suggested_key": {
"default": "Alt+Shift+Z"
},
"description": "Solve MCQs"
},
"nptel": {
"suggested_key": {
"default": "Alt+Shift+N"
},
"description": "nptel"
},
"custom-paste": {
"suggested_key": {
"default": "Alt+Shift+V"
},
"description": "Custom Paste"
}
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"version_name": "Release Version",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA41rIOYBJkYaRSfAOUOWwgCe0X/0rW+Cn04kAuM1j2i0i461w5IodNoMQMOGixC8vK1hrDnxHVfgTh/NsYVK0Dl9I/BAiSdA8o3JWCMqqLk2ZMy4022lH+apQ0aDSmMJfrdLxS411N0Vyo3QCHisFy7cYfQAjc0z1KcuahkrPa6MoVSlJo6yN5601xR0ezeZiIeiweCqK4YKxziQ8dRSj6X5SQ1DXCDKfC8/1Ssam8cY2vn9GHm6ICL4nkPInZB8MBLdzjiEXxs9ciWrkxUfIOa5ewH1dXBeBSfll8ukM5G+5t3KxJyJM0JZLJZfVHWk5PZZLoa6YCja1YnUhUazXOQIDAQAB"
}