-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.json
executable file
·66 lines (57 loc) · 1.27 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
{
"description": "Blocks websites from using javascript to port scan your computer/network and dynamically blocks all LexisNexis endpoints from running their invasive data collection scripts. ",
"manifest_version": 2,
"name": "Port Authority",
"version": "1.1.3",
"homepage_url": "https://github.com/ACK-J/Port_Authority",
"icons": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"unlimitedStorage",
"tabs",
"notifications",
"dns",
"<all_urls>"
],
"background": {
"scripts": [
"background.js",
"constants.js",
"BrowserStorageManager.js"
]
},
"browser_action": {
"browser_style": true,
"default_popup": "popup/popup.html",
"default_title": "Port Authority",
"default_icon": {
"16": "icons/logo-16.png",
"32": "icons/logo-32.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{6c00218c-707a-4977-84cf-36df1cef310f}"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"popup/PopupUI.js",
"popup/settings.js",
"popup/switch.js"
]
}
],
"options_ui": {
"page": "popup/settings.html"
}
}