CORA: Understand PubMed Citation Contexts
Understand citation contexts as you browse PubMed papers.
什么是CORA: Understand PubMed Citation Contexts?
CORA: Understand PubMed Citation Contexts是由Jun Wang开发的Chrome扩展程序,该扩展的主要功能是“Understand citation contexts as you browse PubMed papers.”。
扩展截图
下载CORA: Understand PubMed Citation Contexts扩展crx文件
下载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).
扩展基本信息
名称 | CORA: Understand PubMed Citation Contexts |
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" } ] } |