CORA: Understand PubMed Citation Contexts
Understand citation contexts as you browse PubMed papers.
Τι είναι το CORA: Understand PubMed Citation Contexts;
Το CORA: Understand PubMed Citation Contexts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jun Wang, και η κύρια λειτουργία του είναι "Understand citation contexts as you browse PubMed papers.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CORA: Understand PubMed Citation Contexts
Λήψη αρχείων επέκτασης CORA: Understand PubMed Citation Contexts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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). Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | aiblhpjnljidffmannejhglkiolpecpi |
| Επίσημο URL | https://chromewebstore.google.com/detail/cora-understand-pubmed-ci/aiblhpjnljidffmannejhglkiolpecpi |
| Περιγραφή | Understand citation contexts as you browse PubMed papers. |
| Μέγεθος Αρχείου | 83.87 KB |
| Αριθμός Εγκαταστάσεων | 779 |
| Τρέχουσα Έκδοση | 0.20 |
| Τελευταία Ενημέρωση | 2022-05-25 |
| Ημερομηνία Δημοσίευσης | 2019-09-05 |
| Προγραμματιστής | Jun Wang |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://atlantis.ischool.syr.edu/ |
| Υποστηριζόμενες Γλώσσες | 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"
}
]
} | |