CiteNetCheck

Analyze the local citation network of a published pubmed paper.

Cos'è CiteNetCheck?

CiteNetCheck è un'estensione di Chrome sviluppata da Max Ohn, e la sua funzione principale è "Analyze the local citation network of a published pubmed paper.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione CiteNetCheck

Scarica i file di estensione CiteNetCheck in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome CiteNetCheck CiteNetCheck
ID ljlmjelacjmeihbefphlhfdpgjlcpplb
URL Ufficiale https://chrome.google.com/webstore/detail/citenetcheck/ljlmjelacjmeihbefphlhfdpgjlcpplb
Descrizione Analyze the local citation network of a published pubmed paper.
Dimensione del File 363 KB
Conteggio Installazioni 60
Versione Corrente 1.1.0
Ultimo Aggiornamento 2019-03-15
Data di Pubblicazione 2019-03-15
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Max Ohn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MaxOhn/CiteNetCheck
Lingue Supportate 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"
    }
}