-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (46 loc) · 1.68 KB
/
Copy pathmanifest.json
File metadata and controls
46 lines (46 loc) · 1.68 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
{
"manifest_version": 2,
"name": "GPT2Org",
"version": "0.0.14",
"description": "Utilizing the OpenAI or DeekSeek API, one can efficiently extract a succinct summary from a webpage by providing the necessary prompt and API key. This API facilitates the generation of a condensed overview of the webpage's content. Subsequently, the obtained summary can be organized and stored in a structured format, such as an Org file within the Emacs environment or an Org-roam node by org protocol. By leveraging artificial intelligence technology and the organizational capabilities of the org-mode, individuals can enhance the process of summarizing information sourced from the web and seamlessly integrate it into their personal knowledge management systems.",
"homepage_url": "https://github.com/dustincys/GPT2Org",
"icons": {
"256": "img/icon.png"
},
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"img/*.png"
],
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting",
"clipboardWrite",
"contextMenus"
],
"options_ui": {
"page": "options.html"
},
"browser_action": {
"browser_style": true,
"default_icon": "img/icon.png",
"default_title": "GPT2Org",
"default_popup": "popup.html"
},
"commands": {
"_execute_browser_action": {
"description": "Capture the GPT summary with org-capture and org-roam protocol"
}
},
"browser_specific_settings": {
"gecko": {
"id": "gpt2orgv2@yanshuo.site"
}
}
}