ArxivGPT
Summarize a arXiv paper and provide key insights.
什么是ArxivGPT?
ArxivGPT是由hunkim开发的Chrome扩展程序,该扩展的主要功能是“Summarize a arXiv paper and provide key insights.”。
扩展截图
下载ArxivGPT扩展crx文件
下载ArxivGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ArxivGPT is a Google Chrome plug-in that helps you quickly understand the content of arXiv papers. With just a click, it summarizes the paper and provides key insights, saving you time and helping you quickly grasp the main ideas and concepts. Whether you're a researcher, student, or just curious about a particular topic, ArxivGPT makes it easy to stay informed and up-to-date on the latest developments in your field.
You can also ask follow up questions in the ask me anything input/button. 扩展基本信息
| 名称 | |
| ID | fbbfpcjhnnklhmncjickdipdlhoddjoh |
| 官方URL | https://chromewebstore.google.com/detail/arxivgpt/fbbfpcjhnnklhmncjickdipdlhoddjoh |
| 简介 | Summarize a arXiv paper and provide key insights. |
| 文件大小 | 337 KB |
| 安装次数 | 10,000 |
| 当前版本 | 2023.02.14 |
| 更新时间 | 2023-02-15 |
| 上架时间 | 2023-02-07 |
| 评分 | 3.78/5 共9次评分 |
| 开发者 | hunkim |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/hunkimForks/chatgpt-arxiv-extension |
| 帮助页面URL | https://github.com/hunkimForks/chatgpt-arxiv-extension/issues |
| 支持的语言 | de,en,fr,es,hu,pt-PT,ro,ru,uk,iw,zh-CN,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "2023.02.14",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"host_permissions": [
"https:\/\/*.openai.com\/"
],
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https:\/\/arxiv.org\/*",
"https:\/\/www.biorxiv.org\/content\/*"
],
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
}
]
} | |