-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (38 loc) · 900 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
40
41
42
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "yma@ngokimphu"
}
},
"name": "Yahoo! Mail Alerter",
"version": "1.5.1",
"description": "Alert you when new emails arrived in your Yahoo! Mail box",
"icons": {
"48": "icons/yma-48.png"
},
"browser_action": {
"default_icon": "icons/yma-48.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["https://*.mail.yahoo.com/*"],
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"notifications",
"contextMenus",
"https://mail.yahoo.com/",
"https://login.yahoo.com/"
]
}