Journal Watch

Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.

Was ist Journal Watch?

Journal Watch ist eine Chrome-Erweiterung, die von dcraig entwickelt wurde, und ihr Hauptmerkmal ist "Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Journal Watch-Erweiterungs-CRX-Datei herunterladen

Laden Sie Journal Watch-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

                        This extension flags results on Google Scholar and PubMed when they come from a journal on a centralized watch list. Inclusion on the watch list may be due to lack of adequate peer review or other fundamental standards of scientific publishing integrity. There are definitely false negatives, and there may be false positives.

You can now also filter PubMed search results by journal impact factor. To do this, go to the extension options and set an impact factor threshold and also upload a list of journal impact factors for the extension to use (CSV format). See screenshots for details.

Submit corrections and comments to [email protected]. Thank you!                    

Grundlegende Informationen zur Erweiterung

Name Journal Watch Journal Watch
ID onfkplddmkeepmjdghkegeglgpiaibgm
Offizielle URL https://chromewebstore.google.com/detail/journal-watch/onfkplddmkeepmjdghkegeglgpiaibgm
Beschreibung Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.
Dateigröße 44 KB
Installationsanzahl 495
Aktuelle Version 1.43
Letztes Update 2017-10-09
Veröffentlichungsdatum 2017-10-09
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler dcraig
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Journal Watch",
    "description": "Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.",
    "version": "1.43",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "*:\/\/davidcraigmd.org\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/scholar.google.com\/*",
                "*:\/\/www.ncbi.nlm.nih.gov\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "jquery.csv.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}