-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
40 lines (33 loc) · 1.12 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
{
"name": "Sentiment Analysis and Visualization of Amazon Product Reviews",
"description" : "This extension is to analyze sentiments and visualize reviews from Amazon’s product webpages to provide an overview of user feedback along with average rating against time",
"version": "1.0",
"manifest_version": 2,
"browser_action": {
"default_title": "Amazon Reviews Analysis",
"default_popup": "hello.html",
"default_icon": "amazon-icon.png"
},
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["*://*.amazon.com/*"],
"js": ["content.js"]
}],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
},
"permissions": ["activeTab"],
"externally_connectable": {
"matches": ["*://*.abhishekmsharma.com/*"]
},
"content_security_policy": "script-src 'self' https://www.gstatic.com 'unsafe-eval'; object-src 'self'"
}