-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
41 lines (34 loc) · 945 Bytes
/
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
{
"name": "Go Present code highlighter",
"version": "1.0.0",
"description": "Highlights Go code in golang's Present slides.",
"icons": { "16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png" },
"page_action": {
"default_icon": "icons/icon19.png",
"default_title": "Go Present code highlight",
"default_popup": "src/popup.html"
},
"options_ui": {
"page": "src/options.html",
"chrome_style": true,
"open_in_tab": true
},
"permissions": [
"tabs",
"storage"
],
"background": { "scripts": ["src/background.js"] },
"content_scripts": [
{
"matches": ["*://*/*.slide"],
"css": ["lib/hl/styles/brown-paper.css", "src/contentStyle.css"],
"js": ["lib/jquery.min.js", "lib/hl/highlight.pack.js", "src/initHighlight.js"]
}
],
"web_accessible_resources": [
"lib/hl/styles/*.css"
],
"manifest_version": 2
}