-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (36 loc) · 878 Bytes
/
manifest.json
File metadata and controls
37 lines (36 loc) · 878 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
{
"manifest_version": 2,
"name": "MEV Rss",
"description": "This extension shows the current feed from mev.hr",
"version": "1.0",
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*"],
"js": [ "popup.js","jquery-1.10.2.min.js","feednami-client-v1.1.js"]
}
],
"background": {
"matches": ["http://*/*"],
"scripts": ["jquery-1.10.2.min.js","background.js","feednami-client-v1.1.js"]
},
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"activeTab",
"https://ajax.googleapis.com/",
"storage",
"notifications"
],
"web_accessible_resources": [
"MEV_LOGO.jpg"
]
}