-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
33 lines (33 loc) · 927 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
{
"manifest_version": 2,
"name": "Stack Overflow Unofficial Patch",
"short_name": "SOUP",
"description": "Miscellaneous client-side fixes for bugs on Stack Exchange sites",
"author": "Ilmari Karonen",
"version": "1.56.2",
"version_name": "1.56.2",
"homepage_url": "https://stackapps.com/questions/4486/the-stack-overflow-unofficial-patch-soup",
"icons": {
"16": "icon/SOUP_icon_16.png",
"32": "icon/SOUP_icon_32.png",
"48": "icon/SOUP_icon_48.png",
"64": "icon/SOUP_icon_64.png",
"128": "icon/SOUP_icon_128.png"
},
"content_scripts": [ {
"js": [ "SOUP.user.js" ],
"matches": [
"*://*.stackexchange.com/*",
"*://*.stackoverflow.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*",
"*://*.mathoverflow.net/*",
"*://*.askubuntu.com/*"
],
"exclude_globs": [
"https://stackoverflow.com/c/*"
],
"run_at": "document_start"
} ]
}