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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Understand citation contexts as you browse PubMed papers."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CORA: Understand PubMed Citation Contexts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}