-
Notifications
You must be signed in to change notification settings - Fork 24
/
manifest.json
39 lines (35 loc) · 927 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
38
39
{
"name": "My Extensions",
"version": "0.9.6.5",
"description": "Are you an extensions developer? Keep track of your Chrome extensions. Be notified for new reviews, ratings and more!",
"background": {
"scripts": [
"js/core-lite.js",
"js/jquery-3.1.1.min.js",
"js/js.js",
"js/background.js"
]
},
"options_page": "options.html",
"browser_action": {
"default_icon": "icons/19.png",
"default_title": "My Extensions",
"default_popup": "popup.html"
},
"icons": {
"19": "icons/19.png",
"32": "icons/32.png",
"48": "icons/48.png"
},
"permissions": [
"tabs",
"bookmarks",
"notifications",
"https://chrome.google.com/*",
"http://chrome.dev.pathfinder.gr/*",
"http://chrome.pathfinder.gr/*",
"https://clients2.google.com/*"
],
"manifest_version": 2,
"minimum_chrome_version": "18"
}