-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
90 lines (90 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"manifest_version": 2,
"name": "Markdown Collector",
"version": "1.3.6",
"description": "Collects URLs and converts page content to Markdown.",
"permissions": [
"tabs",
"activeTab",
"storage",
"clipboardWrite",
"webRequest",
"<all_urls>",
"https://api.openai.com/"
],
"background": {
"scripts": [
"scripts/components/markdownUtils.js",
"scripts/components/tabManager.js",
"scripts/components/llmProcessor.js",
"scripts/components/background.js"
],
"type": "module"
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "79.0"
}
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"512": "icons/icon512.png"
}
},
"icons": {
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"512": "icons/icon512.png"
},
"commands": {
"save-url": {
"suggested_key": {
"default": "Alt+I"
},
"description": "Save current URL and convert to Markdown"
},
"open-markdown-page": {
"suggested_key": {
"default": "Alt+M"
},
"description": "Open Markdown collection page"
},
"copy-as-markdown": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copy current page as Markdown"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"libs/Readability.js",
"libs/turndown.min.js",
"scripts/components/content.js",
"scripts/components/fetchContent.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"fonts/Atkinson-Hyperlegible-Regular-102.ttf",
"fonts/Atkinson-Hyperlegible-Bold-102.ttf",
"libs/diff.min.js",
"libs/turndown.min.js",
"libs/Readability.js",
"settings.html",
"scripts/components/settings.js",
"scripts/components/popup.js"
],
"options_ui": {
"page": "settings.html",
"open_in_tab": true
}
}