-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (36 loc) · 861 Bytes
/
manifest.json
File metadata and controls
42 lines (36 loc) · 861 Bytes
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
{
"manifest_version": 2,
"name": "Risha's NLP Chrome Extension",
"version": "0.1",
"description": "Natural Language Processor Gmail chrome extension",
"browser_action": {
"default_icon": "tonalyze_logo2.png",
"default_title": "Google Mail",
"default_popup": "popup.html"
},
"icons": {
"16": "tonalyze_logo2.png",
"48": "tonalyze_logo2.png",
"128": "tonalyze_logo2.png"
},
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": ["content.js"],
"css": ["mycss.css"],
"html": ["index.html"]
}
],
"web_accessible_resources": [
"jquery-1.12.4.js",
"gmail.js",
"main.bundle.js",
"sentiment.js"
],
"permissions": [
"activeTab",
"http://www.google.com/",
"https://ajax.googleapis.com/",
"https://gateway.watsonplatform.net/tone-analyzer/*"
]
}