CiteNetCheck

Analyze the local citation network of a published pubmed paper.

Vad är CiteNetCheck?

CiteNetCheck är en Chrome-tillägg utvecklad av Max Ohn, och dess huvudfunktion är "Analyze the local citation network of a published pubmed paper.".

Tilläggsskärmbilder

screenshot

Ladda ner CiteNetCheck-förlängningens CRX-fil

Ladda ner CiteNetCheck-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CiteNetCheck CiteNetCheck
ID ljlmjelacjmeihbefphlhfdpgjlcpplb
Officiell webbadress https://chrome.google.com/webstore/detail/citenetcheck/ljlmjelacjmeihbefphlhfdpgjlcpplb
Beskrivning Analyze the local citation network of a published pubmed paper.
Filstorlek 363 KB
Antal Installationer 60
Aktuell Version 1.1.0
Senast Uppdaterad 2019-03-15
Publiceringsdatum 2019-03-15
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare Max Ohn
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/MaxOhn/CiteNetCheck
Stödda Språk 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"
    }
}