Journal Watch

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

O que é Journal Watch?

Journal Watch é uma extensão do Chrome desenvolvida por dcraig, e sua principal característica é "Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Journal Watch

Baixe arquivos de extensão Journal Watch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Journal Watch Journal Watch
ID onfkplddmkeepmjdghkegeglgpiaibgm
URL Oficial https://chromewebstore.google.com/detail/journal-watch/onfkplddmkeepmjdghkegeglgpiaibgm
Descrição Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.
Tamanho do Arquivo 44 KB
Contagem de Instalações 495
Versão Atual 1.43
Última Atualização 2017-10-09
Data de Publicação 2017-10-09
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor dcraig
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}