-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 886 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 886 Bytes
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
{
"name": "Bot watchers",
"description": "Distributed system to protect the commenters from bots",
"version": "0.1",
"manifest_version": 2,
"background": { "scripts": ["background.js"] },
"permissions": [
"storage", "tabs", "http://*.livejournal.com/*", "https://*/*"
],
"icons": { "16": "images/icon-16.jpg", "128": "images/icon-128.jpg" },
"browser_action": {
"default_icon": "images/icon.png"
},
"content_scripts": [
{
"matches": ["http://*.livejournal.com/*"],
"js": [
"lib/underscore-min.js",
"lib/base64.js",
"lib/github.js",
"lib/jquery-1.8.2.min.js",
"lib/class.js",
"remote/repository.js",
"handler/abstractsitehandler.js",
"handler/ljsitehandler.js",
"jspopup.js",
"settings.js",
"content_script.js"
]
}
]
}