-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 941 Bytes
/
Copy pathmanifest.json
File metadata and controls
30 lines (30 loc) · 941 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
{
"background": {
"scripts": [ "apps/background/omnibox.js" ]
},
"browser_action": {
"default_icon": {
"38": "common/images/icon-38.png" // icon that displays in Chrome Menu
},
"default_popup": "apps/popup/popup.html",
"default_title": "__MSG_title__"
},
"content_security_policy":"script-src 'self'; object-src 'self'",
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
"128": "common/images/icon-128.png" // icon for Chrome Web Store / extension settings
},
"manifest_version": 2,
"name": "__MSG_appName__",
"omnibox": {
"keyword": "qa" // this is the trigger word for omnibox
},
"permissions": [ "storage", "webRequest", "webRequestBlocking", "*://*/*" ],
"short_name": "__MSG_appShortName__",
"options_ui": {
"page": "apps/options/options.html",
"chrome_style": true
},
"version": "0.0.1"
}