-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (33 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
31
32
33
34
35
36
37
38
39
{
"manifest_version": 2,
"name": "SAG+",
"version": "2.69",
"description": "There are far too many people in the group",
"icons": {
"128": "images/icons/sag128.png", "16": "images/icons/sag16.png", "48": "images/icons/sag48.png"
},
"content_scripts": [
{
"matches": ["https://www.facebook.com/", "https://www.facebook.com/*"],
"js": ["jquery.min.js", "sendkeys.js" ,"contentscript.js"],
"run_at": "document_start"
}
],
"background": {
"matches": ["https://www.facebook.com/", "https://www.facebook.com/*"],
"scripts": ["background.js"],
"persistent": true
},
"web_accessible_resources": [
"images/*.png",
"images/*.gif",
"images/*.jpg",
"images/*"
],
"page_action": {
"default_title": "SAG+",
"default_icon": "images/icons/sag128.png",
"default_popup": "popup.html"
},
"permissions":["storage", "webRequest"]
}