CiteNetCheck

Analyze the local citation network of a published pubmed paper.

Was ist CiteNetCheck?

CiteNetCheck ist eine Chrome-Erweiterung, die von Max Ohn entwickelt wurde, und ihr Hauptmerkmal ist "Analyze the local citation network of a published pubmed paper.".

Erweiterungsscreenshots

screenshot

CiteNetCheck-Erweiterungs-CRX-Datei herunterladen

Laden Sie CiteNetCheck-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        CiteNetCheck is an open-source browser extension visualizing a network.

Whenever NCBI's website is being visited by opening a tab containing a paper of their pubmed database, this extension becomes clickable. Once clicked, CiteNetCheck first retrieves data about the local citation network of the paper that is currently visited and then displays a visual representation of it. Additionally, the extension shows a few properties of the network such as node degrees and clustering coefficients.                    

Grundlegende Informationen zur Erweiterung

Name CiteNetCheck CiteNetCheck
ID ljlmjelacjmeihbefphlhfdpgjlcpplb
Offizielle URL https://chrome.google.com/webstore/detail/citenetcheck/ljlmjelacjmeihbefphlhfdpgjlcpplb
Beschreibung Analyze the local citation network of a published pubmed paper.
Dateigröße 363 KB
Installationsanzahl 60
Aktuelle Version 1.1.0
Letztes Update 2019-03-15
Veröffentlichungsdatum 2019-03-15
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Max Ohn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/MaxOhn/CiteNetCheck
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CiteNetCheck",
    "author": "Max Ohn",
    "version": "1.1.0",
    "description": "Analyze the local citation network of a published pubmed paper.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistence": false
    },
    "page_action": {
        "default_title": "Analyze citation network",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "tabs"
    ],
    "icons": {
        "16": "images\/network_16.png",
        "128": "images\/network_128.png"
    }
}