-
Notifications
You must be signed in to change notification settings - Fork 19
/
manifest.json
53 lines (53 loc) · 1.12 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
52
53
{
"manifest_version": 2,
"name": "Prism Pretty",
"version": "1.14.2",
"author": "L3au",
"description": "A Chrome Extension to format/highlight/preview HTML/JS/CSS/Markdown code with Prism.js",
"minimum_chrome_version": "50",
"permissions": [
"tabs",
"<all_urls>",
"storage",
"webRequest",
"webRequestBlocking",
"contextMenus"
],
"update_url": "http://clients2.google.com/service/update2/crx",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"css/prism.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"*.js",
"js/*",
"css/*",
"html/*"
],
"browser_action": {
"default_icon": "icon/icon_128.png",
"default_title": "Prism Pretty",
"default_popup": "html/popup.html"
},
"icons": {
"16": "icon/icon_16.png",
"48": "icon/icon_48.png",
"128": "icon/icon_128.png"
}
}