-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (37 loc) · 1.25 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
41
42
43
44
45
{
"manifest_version": 2,
"version": "1.0",
"version_name": "1.0 dev",
"name": "Memo",
"description": "Расширение для эффективного запоминания английских слов по методике интервальных повторений.",//"Memo is a chrome extension for efficient memorizing english words while you surfing net. Based on spaced repetitions.",
"icons": { "48": "images/icon_48.png" },
//"default_locale": "ru", need for internationalization, while only ru
"browser_action": {
"default_icon": "images/popup_32.png",
"default_title": "Memo",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"chrome_style": true
},
"background":{
"scripts": ["storageManager.js", "progressManager.js", "notificationManager.js", "cardScheduler.js",
"commonDefs.js", "background.js", "utilities.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["executeScript.js"],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"alarms",
"notifications",
"activeTab",
"*://*/",
"https://ajax.googleapis.com/"
]
}