-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
44 lines (35 loc) · 936 Bytes
/
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
{
"manifest_version": 2,
"name": "Asterisk Click2Dial",
"version": "0.3",
"description": "This is an easy to use extention, select any number on a web page, right click to open the context menu which you can use to call this number.",
"author": "Antoine Turmel",
"icons": {
"48": "icons/asterisk-48.png"
},
"permissions": [
"storage",
"menus",
"<all_urls>",
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": {
"20": "icons/asterisk-20.png",
"32": "icons/asterisk-32.png"
},
"default_title": "Asterisk Click2Dial",
"default_popup": "popup/popupAsterisk.html"
},
"options_ui": {
"page" : "options.html"
},
"background": {
"scripts": ["asterisk.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}]
}