-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.02 KB
/
manifest.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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
46
47
{
"name": "__MSG_EXTENSION_NAME__"
, "short_name": "__MSG_EXTENSION_SHORTNAME__"
, "version": "1.8.3"
, "manifest_version": 2
, "description": "__MSG_EXTENSION_DESCRIPTION__"
, "icons": {
"16": "images/icon16.png"
, "48": "images/icon48.png"
, "128": "images/icon128.png"
}
, "default_locale": "en"
, "background": {
"scripts": [
"js/constants.js"
, "js/background.js"
]
}
, "browser_action": {
"default_icon": {
"19": "images/icon19.png"
, "38": "images/icon38.png"
}
, "default_title": "__MSG_BROWSER_ACTION_TITLE__"
}
, "options_page": "options.html"
, "content_scripts": [{
"matches": [ "<all_urls>" ]
, "js": [
"js/third_party/jquery-2.1.1-simplified.min.js"
, "js/third_party/moment-with-locales.min.js"
, "js/constants.js"
, "js/expander.js"
]
, "run_at": "document_start"
}]
, "permissions": [
"tabs"
, "storage"
, "unlimitedStorage"
, "<all_urls>"
, "notifications"
, "clipboardRead"
]
, "optional_permissions": [
]
}