-
Notifications
You must be signed in to change notification settings - Fork 65
/
manifest.json
77 lines (61 loc) · 1.28 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"action": {
"default_icon": {
"16": "icons/leechblock16.png",
"32": "icons/leechblock32.png",
"48": "icons/leechblock48.png",
"64": "icons/leechblock64.png"
},
"default_popup": "popup.html",
"default_title": "LeechBlock"
},
"author": "James Anderson",
"background": {
"scripts": ["common.js", "background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["content.css"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://www.proginosko.com/leechblock/",
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icons/leechblock16.png",
"32": "icons/leechblock32.png",
"48": "icons/leechblock48.png",
"64": "icons/leechblock64.png",
"96": "icons/leechblock96.png",
"128": "icons/leechblock128.png"
},
"manifest_version": 3,
"name": "__MSG_extensionName__",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"alarms",
"downloads",
"history",
"menus",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation"
],
"version": "1.6.6"
}