forked from proginosko/LeechBlockNG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (48 loc) · 1021 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
{
"description": "LeechBlock is a simple productivity tool designed to block those time-wasting sites that can suck the life out of your working day.",
"manifest_version": 2,
"name": "LeechBlock NG",
"version": "0.8.1",
"homepage_url": "http://www.proginosko.com/leechblock/",
"icons": {
"48": "icons/leechblock48.png",
"96": "icons/leechblock96.png"
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"downloads",
"menus",
"storage",
"tabs",
"webNavigation"
],
"optional_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["common.js", "background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"browser_action": {
"browser_style": false,
"default_icon": {
"16": "icons/leechblock16.png",
"32": "icons/leechblock32.png"
},
"default_popup": "popup.html",
"default_title": "LeechBlock"
}
}