CiteNetCheck

Analyze the local citation network of a published pubmed paper.

Co je CiteNetCheck?

CiteNetCheck je rozšíření Chrome vyvinuté Max Ohn, a jeho hlavní funkcí je „Analyze the local citation network of a published pubmed paper.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření CiteNetCheck

Stáhněte si soubory rozšíření CiteNetCheck ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název CiteNetCheck CiteNetCheck
ID ljlmjelacjmeihbefphlhfdpgjlcpplb
Oficiální URL https://chrome.google.com/webstore/detail/citenetcheck/ljlmjelacjmeihbefphlhfdpgjlcpplb
Popis Analyze the local citation network of a published pubmed paper.
Velikost souboru 363 KB
Počet instalací 60
Aktuální Verze 1.1.0
Poslední Aktualizace 2019-03-15
Datum Vydání 2019-03-15
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Max Ohn
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/MaxOhn/CiteNetCheck
Podporované Jazyky 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"
    }
}