-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.71 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.71 KB
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
{
"name": "Merge Code UI",
"description": "A chrome extension to fix the UI render for ServiceNow UI for the Merge Form Field Modal",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"contextMenus",
"notifications",
"storage",
"activeTab",
"declarativeContent"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "/assets/icons/48.png",
"128": "/assets/icons/128.png"
}
},
"icons": {
"48": "/assets/icons/48.png",
"128": "/assets/icons/128.png"
},
"content_scripts": [{
"matches": ["https://*.service-now.com/merge_form_upgrade.do*",
"https://*.service-now.com/merge_form_current_version.do*",
"http://*.service-now.com/merge_form_current_version.do*",
"https://*.service-now.com/styles/heisenberg/heisenberg_all.cssx*"],
"js": ["jquery-3.6.0.js", "content.js"],
"css": ["styles.css"],
"run_at": "document_end"
}, {
"matches": ["https://*.service-now.com/sys.scripts.do*",
"https://*.service-now.com/*sys.scripts.do*"],
"all_frames": true,
"css": ["bgscript.css"],
"run_at": "document_end"
},
{
"matches": ["https://signon.service-now.com/x_snc_sso_auth.do*"],
"all_frames": true,
"js": ["dontchallenge.js"],
"run_at": "document_end"
},
{
"matches": ["https://mail.yahoo.com/*"],
"all_frames": true,
"js": ["yahoo.js"],
"run_at": "document_end"
}
]
}