-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 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
40
41
42
43
{
"manifest_version": 2,
"name": "xiMatrix",
"author": "Tobias Bengfort",
"homepage_url": "https://github.com/xi/xiMatrix",
"description": "block requests based on domain and type",
"version": "0.9.0",
"browser_action": {
"default_title": "xiMatrix",
"default_popup": "src/popup.html",
"default_icon": "icon.svg"
},
"icons": {
"48": "icon.svg"
},
"background": {
"scripts": ["src/bg.js"],
"persistent": false,
"type": "module"
},
"content_scripts": [{
"js": ["src/content.js"],
"matches": ["<all_urls>"],
"run_at": "document_start"
}],
"options_ui": {
"page": "src/settings.html",
"open_in_tab": true
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{936cea12-8e61-4929-b589-caece971bbd7}"
}
}
}