-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·52 lines (46 loc) · 1.29 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
{
"name": "Gist-prettify",
"version": "0.9.2",
"manifest_version": 2,
"description": "Prettify your gist on popular gist website such as gist.github.com and app.gistboxapp.com.",
"minimum_chrome_version": "14",
"offline_enabled": true,
"icons": {
"16": "images/gist-beautify-16.png",
"48": "images/gist-beautify-48.png",
"128": "images/gist-beautify-128.png",
"256": "images/gist-beautify-256.png"
},
"web_accessible_resources": [
"images/gist-beautify-48.png",
"styles/main.css"
],
"permissions": [
"tabs",
"notifications"
],
"background": {
"scripts": [
"scripts/lib/beautify.js",
"scripts/lib/beautify-css.js",
"scripts/lib/beautify-html.js",
"scripts/chromereload.js",
"scripts/background.js"
]
},
"browser_action": {
"default_icon": "images/gist-beautify-19.png",
"default_title": "Copy-Prettify-Paste"
},
"content_scripts": [{
"matches": [
"https://app.gistboxapp.com/*",
"https://gist.github.com/*/edit"
],
"all_frames": true,
"css": ["styles/main.css"],
"js": [
"scripts/content_script.js"
]
}]
}