-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
58 lines (44 loc) · 985 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"manifest_version": 2,
"name": "PureMeme",
"version": "0.0.11",
"default_locale": "en",
"description": "More memes. Less noise.",
"icons": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"background": {
"page": "src/bg/background.html",
"persistent": false
},
"page_action" : {
"default_icon": {
"19": "icons/19x19.png",
"38": "icons/38x38.png"
},
"default_title": "PureMeme",
"default_popup": "src/page_action/page_action.html"
},
"author": "Scott Gellock",
"content_scripts": [
{
"matches": [
"http://*.techmeme.com/*",
"https://*.techmeme.com/*"
],
"js": [
"js/jquery/jquery-2.1.3.min.js",
"src/inject/inject.js"
]
}
],
"homepage_url": "http://www.scotg.net",
"minimum_chrome_version": "37",
"offline_enabled": true,
"permissions": [
"tabs"
],
"short_name": "PureMeme"
}