-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.18 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
{
"author": "Lookyloo",
"background": {
"scripts": [
"background_script.js"
]
},
"action": {
"default_icon": {
"64": "icons/icon.png"
},
"default_title": "Lookyloo",
"default_popup": "browserAction/index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "127.0"
},
"gecko_android": {
"id": "[email protected]",
"strict_min_version": "127.0"
},
"safari": {
"id": "[email protected]",
"strict_min_version": "15"
}
},
"description": "Submit the URL of the current tab to a lookyloo instance for capture.",
"developer": {
"name": "Lookyloo Team",
"url": "https://github.com/Lookyloo"
},
"incognito": "spanning",
"homepage_url": "https://github.com/Lookyloo/webext",
"icons": {
"64": "icons/icon.png"
},
"manifest_version": 3,
"name": "lookyloo",
"options_ui": {
"page": "options/index.html"
},
"optional_permissions": [
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"scripting",
"storage"
],
"version": "0.1.1"
}