-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.21 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
{
"manifest_version": 2,
"name": "Better Facepunch Lua Blocks",
"short_name": "Better FP Lua",
"version": "0.2.0",
"description": "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!",
"author": "Zerf",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": ["https://facepunch.com/showthread.php*"],
"js": [
"bower_components/codemirror/index.js",
"bower_components/codemirror-addon-lint/index.js",
"bower_components/codemirror-mode-lua/index.js",
"worker_proxy_content.js",
"script.js"
],
"css": [
"bower_components/codemirror-css/index.css",
"bower_components/codemirror-addon-lint-css/index.css",
"bower_components/codemirror-theme-monokai/index.css",
"style.css"
]
}
],
"permissions": [
"https://facepunch.com/showthread.php*"
],
"background": {
"persistent": false,
"scripts": [
"worker_proxy_background.js",
"bower_components/glualint-lib/compiled.js"
]
},
"web_accessible_resources": [
"worker_proxy.html"
]
}