-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.51 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.51 KB
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
{
"manifest_version": 3,
"name": "OpenLeaf - Citation Search & Paper Review for Overleaf",
"version": "0.2.0",
"description": "AI-powered citation search and paper review for Overleaf. Find relevant papers to cite, paragraph by paragraph.",
"permissions": ["storage"],
"host_permissions": [
"https://www.overleaf.com/*",
"https://prism.openai.com/*",
"https://api.semanticscholar.org/*",
"https://api.openalex.org/*",
"https://google.serper.dev/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"background": {
"service_worker": "dist/background.js"
},
"content_scripts": [
{
"matches": ["https://www.overleaf.com/project/*"],
"js": ["dist/content.js"],
"css": ["src/content/style.css"],
"run_at": "document_idle"
},
{
"matches": ["https://prism.openai.com/*"],
"js": ["dist/content.js"],
"css": ["src/content/style.css"],
"run_at": "document_idle"
}
],
"options_ui": {
"page": "public/options.html",
"open_in_tab": true
},
"icons": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": ["dist/page-bridge.js"],
"matches": ["https://www.overleaf.com/*", "https://prism.openai.com/*"]
}
],
"action": {
"default_icon": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png"
},
"default_title": "OpenLeaf - Citation Search & Paper Review"
}
}