-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
49 lines (47 loc) · 1 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
{
"name": "ChromeCall",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"description": "ChromeCall extension to dial numbers directly from web pages",
"version": "1.0.1",
"action": {
"default_popup": "html/menu.html"
},
"content_scripts": [{
"matches": [ "http://*/*", "https://*/*" ],
"css": ["css/cc content.css"],
"js": [
"js/jquery-3.3.1.min.js",
"js/axios.min.js",
"js/rsvp.min.js",
"config.js",
"js/stub.js",
"js/search.js",
"js/api.js",
"js/popup.js",
"js/keybind.js",
"js/filter.js",
"js/content.js"
],
"run_at": "document_end",
"all_frames": true
}],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"http://*/*",
"https://*/*",
"tabs",
"storage",
"contextMenus"
],
"manifest_version": 3,
"web_accessible_resources": [{
"resources": ["img/*"],
"matches": ["http://*/*", "https://*/*"]
}]
}