-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (31 loc) · 781 Bytes
/
manifest.json
File metadata and controls
39 lines (31 loc) · 781 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
38
39
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"permissions": ["storage", "tabs", "<all_urls>"],
"version": "1.4.1",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/flosommerfeld/Historify",
"author": "flosommerfeld",
"icons": {
"96": "icons/icon_96.png"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_idle"
}],
"background": {
"scripts": ["background_script.js"]
},
"browser_action": {
"default_icon": "icons/icon_96.png",
"default_title": "Historify"
},
"applications": {
"gecko": {
"id": "historify_flosommerfeld@example.com",
"strict_min_version": "42.0"
}
},
"default_locale": "en"
}