forked from DuckyCrayfish/phone-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (66 loc) · 1.51 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Click to Call",
"version": "2.0.0",
"manifest_version": 2,
"description": "Enables 'Click to Call' by converting phone numbers into clickable links.",
"browser_specific_settings": {
"gecko": { "id": "[email protected]" }
},
"permissions": [
"storage",
"contextMenus",
"tabs"
],
"background": {
"persistent": false,
"scripts": [
"common.js",
"background.js"
]
},
"content_scripts": [
{
"js": [
"common.js",
"content_script.js"
],
"matches": [ "<all_urls>" ],
"run_at": "document_idle",
"all_frames": true
}
],
"browser_action": {
"default_title": "Click to Call - Page Options",
"default_popup": "browser_action.html",
"theme_icons": [
{
"light": "icons/icon-16-light.png",
"dark": "icons/icon-16.png",
"size": 16
}, {
"light": "icons/icon-32-light.png",
"dark": "icons/icon-32-light.png",
"size": 32
}, {
"light": "icons/icon-64-light.png",
"dark": "icons/icon-64-light.png",
"size": 64
}
]
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"browser_style": true,
"chrome_style": true
}
}