-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest-old.json
73 lines (66 loc) · 1.71 KB
/
manifest-old.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
{
"name": "GREYCORTEX Research DomAIn",
"description": "The first AI based browser extension - predicts badness of domains.",
"author": "P3 @ GREYCORTEX Research",
"manifest_version": 2,
"version": "2019.0.0",
"homepage_url": "https://www.greycortex.com",
"icons": {
"16": "img/gy_16.png",
"48": "img/gy.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "59.0"
}
},
"minimum_chrome_version": "49.0",
"minimum_opera_version": "36.0",
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"webNavigation",
"tabs",
"storage",
"unlimitedStorage",
"notifications"
],
"browser_action": {
"default_icon": {
"16": "img/gy_16.png",
"48": "img/gy.png"
},
"default_title": "GREYCORTEX Research DomAIn",
"default_popup": "popup.html",
"browser_style": true
},
"page_action": {
"default_icon": "img/gy.png",
"default_title": "GREYCORTEX Research DomAIn",
"default_popup": "popup.html",
"browser_style": true
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"background": {
"scripts": ["js/browser.js"]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"js/content.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
]
}