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"
}
]
} | |