-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (28 loc) · 1.09 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
{
"manifest_version": 3,
"name": "Hook Line and Secure",
"description": "Hook Line and Secure' is a browser extension that scans emails for signs of phishing and calculates a confidence score.",
"version": "1.0",
"permissions": [
"sidePanel",
"storage",
"tabs"
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwoCI/8wHmexEmBZWwyO2nGAL+IuTmRDLdSE1P6OWdQee7UbTRtl28RwFgbVXcMyzDUt7YrQqUg56V/tzE8qupaVrbr0AmKzoJpK8u+UueFahZveTJ9Mw1khMWaijHXsvaEr4gXlpPkExCPYb8nksy/X9l/p+xKU+7WVvTaXEIMrJbMNEWl4OkLlk/FqZBvoC3XstjHU8vKdHc4JQ8EcDXcFrjBc4Lud6sqY9ZrjmcwCkRWPvrz5ic+KV80GazCUehPx1Dcjj2GaHRhWrlgWmF7KeB/80/Sw9ZwWQ2pFmCDCqLBkF2qaAuy2jaGsv56x5wqcEmYEvOQRorHIq674pMQIDAQAB",
"action": {
"default_popup": "popup/popup.html",
"default_path": "sidebar/sidebar.html",
"default_icon": "images/icon.png"
},
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": ["/database/dbHandler.js", "uiDisp.js"]
}
],
"background": {
"service_worker": "background.js"
}
}