CORA: Understand PubMed Citation Contexts

Understand citation contexts as you browse PubMed papers.

CORA: Understand PubMed Citation Contexts là gì?

CORA: Understand PubMed Citation Contexts là một tiện ích mở rộng Chrome được phát triển bởi Jun Wang, và tính năng chính của nó là "Understand citation contexts as you browse PubMed papers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CORA: Understand PubMed Citation Contexts

Tải xuống các tệp mở rộng CORA: Understand PubMed Citation Contexts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CORA: Understand PubMed Citation Contexts CORA: Understand PubMed Citation Contexts
ID aiblhpjnljidffmannejhglkiolpecpi
URL Chính Thức https://chromewebstore.google.com/detail/cora-understand-pubmed-ci/aiblhpjnljidffmannejhglkiolpecpi
Mô tả Understand citation contexts as you browse PubMed papers.
Kích Thước Tệp 83.87 KB
Số Lần Cài Đặt 779
Phiên Bản Hiện Tại 0.20
Cập Nhật Lần Cuối 2022-05-25
Ngày Phát Hành 2019-09-05
Nhà Phát Triển Jun Wang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://atlantis.ischool.syr.edu/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}