ArxivGPT
Summarize a arXiv paper and provide key insights.
Cos'è ArxivGPT?
ArxivGPT è un'estensione di Chrome sviluppata da hunkim, e la sua funzione principale è "Summarize a arXiv paper and provide key insights.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ArxivGPT
Scarica i file di estensione ArxivGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | fbbfpcjhnnklhmncjickdipdlhoddjoh |
| URL Ufficiale | https://chromewebstore.google.com/detail/arxivgpt/fbbfpcjhnnklhmncjickdipdlhoddjoh |
| Descrizione | Summarize a arXiv paper and provide key insights. |
| Dimensione del File | 337 KB |
| Conteggio Installazioni | 10,000 |
| Versione Corrente | 2023.02.14 |
| Ultimo Aggiornamento | 2023-02-15 |
| Data di Pubblicazione | 2023-02-07 |
| Valutazione | 3.78/5 Totale 9 Valutazioni |
| Sviluppatore | hunkim |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/hunkimForks/chatgpt-arxiv-extension |
| URL della Pagina di Aiuto | https://github.com/hunkimForks/chatgpt-arxiv-extension/issues |
| Lingue Supportate | 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"
]
}
]
} | |