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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CORA: Understand PubMed Citation Contexts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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