CORA: Understand PubMed Citation Contexts
Understand citation contexts as you browse PubMed papers.
Cos'è CORA: Understand PubMed Citation Contexts?
CORA: Understand PubMed Citation Contexts è un'estensione di Chrome sviluppata da Jun Wang, e la sua funzione principale è "Understand citation contexts as you browse PubMed papers.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CORA: Understand PubMed Citation Contexts
Scarica i file di estensione CORA: Understand PubMed Citation Contexts 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
This extension aims to help people better understand the citation contexts of a PubMed article. We extracted over 100 million citation contexts from semanticscholar.org (especially, S2ORC: Allen AI's Open Research Corpus), and trained a deep learning model to classify those citation contexts into different types so that readers know how an article was cited by others. In addition, we also provide users with a search function to find EurekAlert! science news releases and NSF/NIH grants that are related to a PubMed article. This project is supported by IMLS grant RE-07-14-0015. Team members: Yingya Li, Yatish Hegde, Jun Wang (chrome extension developer), and Bei Yu (PI).
Informazioni di Base sull'Estensione
Nome | CORA: Understand PubMed Citation Contexts |
ID | aiblhpjnljidffmannejhglkiolpecpi |
URL Ufficiale | https://chromewebstore.google.com/detail/cora-understand-pubmed-ci/aiblhpjnljidffmannejhglkiolpecpi |
Descrizione | Understand citation contexts as you browse PubMed papers. |
Dimensione del File | 83.87 KB |
Conteggio Installazioni | 779 |
Versione Corrente | 0.20 |
Ultimo Aggiornamento | 2022-05-25 |
Data di Pubblicazione | 2019-09-05 |
Sviluppatore | Jun Wang |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://atlantis.ischool.syr.edu/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CORA: Understand PubMed Citation Contexts", "short_name": "CORA-PubMed", "description": "Understand citation contexts as you browse PubMed papers.", "version": "0.20", "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/static.doodlebook.org\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*.png", "loading.gif", "my.css", "bootstrap.min.css" ], "matches": [ "https:\/\/pubmed.ncbi.nlm.nih.gov\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/pubmed.ncbi.nlm.nih.gov\/*" ], "css": [ "my.css" ], "js": [ "jquery.min.js", "main_script.js" ], "run_at": "document_end" } ] } |