forked from pviswanathan/ChromeAutoTextExpander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (51 loc) · 1.13 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
46
47
48
49
50
51
{
"name": "__MSG_EXTENSION_NAME__"
, "short_name": "__MSG_EXTENSION_SHORTNAME__"
, "version": "1.9.2"
, "manifest_version": 2
, "description": "__MSG_EXTENSION_DESCRIPTION__"
, "icons": {
"16": "images/icon16.png"
, "48": "images/icon48.png"
, "128": "images/icon128.png"
}
, "default_locale": "en"
, "offline_enabled": true
, "omnibox": {
"keyword" : "__MSG_KEYWORD_OMNIBAR_TRIGGER__"
}
, "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": [
]
}