forked from tubaterry/Noojee-Click-for-Asterisk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
58 lines (55 loc) · 1.26 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
{
"manifest_version": 2,
"name" : "Noojee Click for Asterisk",
"version" : "0.92",
"author" : "Noojee.com.au, adapted by Chris Terry (fixed by Eugenio Bonifacio)",
"description" : "Turns phone numbers in any web page into click-to-dial links.",
"icons" : {
"16" : "img/icon-16.png",
"48" : "img/phone-48.png",
"128" : "img/phone-128.png"
},
"options_page" : "options.html",
"background" : {
"scripts" : [
"js/noojee/namespace.js",
"js/noojee/lib.js",
"js/noojee/dialstatus.js",
"js/noojee/job.js",
"js/noojee/util.js",
"js/noojee/prefs.js",
"js/noojee/sequence.js",
"js/noojee/prompts.js",
"js/noojee/asterisk.js",
"js/noojee/noojeeclick.js",
"js/noojee/event.js",
"js/noojee/phonepatterns.js",
"js/noojee/notification.js",
"js/background.js"
]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"js/noojee/namespace.js",
"js/noojee/lib.js",
"js/noojee/noojeeclick.js",
"js/noojee/prefs.js",
"js/noojee/util.js",
"js/noojee/prompts.js",
"js/noojee/render.js",
"js/noojee/phonepatterns.js",
"js/noojee/handlers.js",
"js/init.js"]
}
],
"permissions" : [
"http://*/*",
"contextMenus",
"notifications"
],
"web_accessible_resources" : [
"img/call-phone.png"
]
}