forked from Aaron-P/FakespotReviewChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 987 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
{
"manifest_version": 2,
"name": "Fakespot Review Checker",
"version": "2.1.0",
"description": "Analyze Amazon, Best Buy, Sephora, Steam, TripAdvisor, Walmart, and Yelp reviews.",
"author": "Aaron Papp",
"homepage_url": "https://github.com/Aaron-P/FakespotReviewChecker",
"icons": {
"24": "src/icons/icon.svg",
"32": "src/icons/icon.svg",
"48": "src/icons/icon.svg",
"64": "src/icons/icon.svg",
"96": "src/icons/icon.svg"
},
"permissions": [
"storage",
"tabs"
],
"background": {
"scripts": [
"src/background.js"
]
},
"options_ui": {
"browser_style": true,
"page": "src/options.html"
},
"page_action": {
"default_icon": "src/icons/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "{decca23b-316c-41a9-9fd2-f96ad9331e10}",
"strict_min_version": "57.0"
}
}
}