-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
30 lines (30 loc) · 930 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
{
"name": "Memer",
"short_name": "Memer",
"author": "Rick Beyer",
"homepage_url": "https://github.com/fcbeyer/memer-chrome",
"manifest_version": 2,
"version": "1.0.16",
"description": "replace lazy comments in threads with the meme image referenced",
"permissions": [
"storage"
],
"browser_action": {
"default_title": "Memer",
"default_icon": "lib/images/icons/jaws16.png"
},
"icons": {
"16": "lib/images/icons/jaws16.png",
"48": "lib/images/icons/jaws48.png",
"128": "lib/images/icons/jaws128.png"
},
"content_scripts": [ {
"js": ["lib/javascript/jquery.min.js", "lib/javascript/jquery.ba-replacetext.min.js", "lib/javascript/memer.js"],
"css": ["lib/stylesheets/memer.css"],
"matches": [ "http://*.fark.com/*","http://reddit.com/*"]
}],
"web_accessible_resources": [
"lib/images/memes/*.jpg",
"lib/images/memes/*.gif"
]
}