-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
35 lines (35 loc) · 935 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
{
"manifest_version": 2
, "name": "StackStalker"
, "version": "3.0.2"
, "description": "Monitor any question from any Stack Exchange site and see when it is updated!"
, "icons": {
"128": "images/logo.png"
}
, "background": {
"scripts": [
"jquery.min.js"
, "apis.js"
, "background.js"
]
}
, "browser_action": {
"default_icon": "images/icon.png"
, "default_popup": "popup.html"
}
, "permissions": [
"tabs"
, "unlimitedStorage"
, "storage"
, "http://*.stackoverflow.com/"
, "https://*.stackoverflow.com/"
, "https://*.superuser.com/"
, "https://*.stackapps.com/"
, "https://*.serverfault.com/"
, "https://*.askubuntu.com/"
, "https://*.mathoverflow.com/"
, "https://*.stackexchange.com/"
]
, "author": "Jason Edelman"
, "homepage_url": "https://chrome.google.com/webstore/detail/stackstalker/paoeolblihedcagbofkkkecjilmpehmo"
}