-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 869 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
{
"manifest_version": 2,
"name": "Facebook Reactions",
"description": "Easily react to stories on Facebook by finding a reaction gif or creating your own",
"version": "0.5",
"content_scripts": [
{
"matches": ["https://www.facebook.com/*"],
"css": ["reactions.css"],
"js": [
"lib/patch-worker.js",
"lib/jquery-2.1.1.min.js",
"lib/gif.js",
"lib/fuse.min.js",
"classes/FBPageListener.js",
"classes/Constants.js",
"classes/Uploader.js",
"classes/GifProvider.js",
"reactions.js"
],
"run_at": "document_start"
}
],
"permissions": [
"tabs",
"https://*.facebook.com/*",
"http://*.facebook.com/*"
],
"web_accessible_resources": [
"lib/gif.worker.js",
"reactions.html",
"gifs/*.gif",
"gifs/*.jpg",
"metagif.json"
]
}