forked from partcyborg/proofpoint_link_revealer_chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (51 loc) · 1.13 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
{
"manifest_version":2,
"name":"Proofpoint URL Revealer for Gmail",
"short_name":"Proofpoint URL Revealer for Gmail",
"version":"0.500",
"description":"Show destination URLs in Gmail when hovering over Proofpoint modified hyperlinks",
"background":{
"scripts":[
"js/jquery-2.1.4.min.js",
"js/default.js",
"background.js"
]
},
"options_page":"options.html",
"icons":{
"16":"img/icon_16.png",
"128":"img/icon_128.png"
},
"content_scripts":[
{
"matches": [
"http://mail.google.com/*",
"https://mail.google.com/*"
],
"permissions":[
"activeTab"
],
"css": [
"css/jquery.qtip.min.css",
"css/fontawesome.min.css",
"css/solid.min.css"
],
"js": [
"js/jquery-2.1.4.min.js",
"js/jquery.qtip.min.js",
"js/jquery.urldecoder.min.js",
"js/script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"css/fontawesome.min.css",
"css/solid.min.css",
"webfonts/fa-solid-900.eot",
"webfonts/fa-solid-900.svg",
"webfonts/fa-solid-900.ttf",
"webfonts/fa-solid-900.woff",
"webfonts/fa-solid-900.woff2"
]
}