Grey Literature Search Recorder

Normalizes search results and transparency of grey literature searches.

Co to jest Grey Literature Search Recorder?

Grey Literature Search Recorder to rozszerzenie Chrome opracowane przez Christopher Penkin, a jego główną funkcją jest „Normalizes search results and transparency of grey literature searches.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Grey Literature Search Recorder

Pobierz pliki rozszerzeń Grey Literature Search Recorder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Grey literature is defined as “that which is produced on all levels of government, academics, business and industry in print and electronic formats, but which is not controlled by commercial publishers, i.e., where publishing is not the primary activity of the producing body”. It includes both academic research that did not make it through publication and other research not intended for publication in academic journals. Systematic reviews and maps should include substantial efforts to identify and include relevant grey literature.

This aims to mitigate the risk of publication bias, and maximise comprehensiveness by including all relevant research. Grey literature can be particularly important in systematic reviews, evidenced by a review published in 2015 in which over 40% of the final 124 studies were grey literature. 

Guidance from the Collaboration for Environmental Evidence (CEE) relating to grey literature recommends that reviewers search for grey literature in a number of ways, including: 1) searches of bibliographic databases that catalogue such documents, for example Aquatic Sciences & Fisheries Abstracts and OpenGrey; 2) searches of thesis and dissertation repositories, such as the British Library EThOS database; 3) screening websites and publication lists of relevant organisations, such as the World Bank; 4) searches of the internet, for example using Google Scholar; 5) via calls to contacts and networks for submission of relevant evidence. Other coordinating bodies, such as Cochrane, suggest also searching trial registries, preprint servers and repositories of registered reports.

In recent years, technology to support the identification and extraction of grey literature and related information from the internet have been identified, for example web scraping tools. However, these tools are generally not often used in evidence syntheses; perhaps because of a lack of awareness, restrictive subscription fees, or difficulties in using them. In addition, the development of social media and resources like Google Scholar have made searching for and calling for submission of grey literature easier. However, at present, conducting and reporting grey literature searches is one of the least transparent and repeatable processes within a systematic review, in great part because of the challenge in recording the iterative and exploratory searches involved.

The Grev Literature Search Recorder is a novel tool developed specifically for recording and reporting web-based grey literature searches, and reusing the outputs in the synthesis. The tool was developed at the second Evidence Synthesis Hackathon (ESH, www.eshackathon.org) held in Canberra in April 2019, and conforms to the mission of the ESH, in that it is an Open Source tool that is free-to-use.

The aims of the tool are to:
 - Increase the transparency of grey literature searches by allowing users to easily document their web-based searches in detail
 - Increase efficiency of grey literature searching by allowing users to export their web-based search results in formats that can be readily integrated into existing review management tools
 - Facilitate the replication and updating of grey literature searches, by allowing search results to be archived and reused by subsequent users

Specifically, the tool aims to allow users to download search results or lists of documents from websites at once in a standard format, without the need for time-consuming transcription. It records the search terms used, the user's browser version and OS version. The URL, date and time are all recorded to ensure that as much information is recorded of the session to allow it to be repeated by others ensuring better science.                    

Podstawowe informacje o rozszerzeniu

Nazwa Grey Literature Search Recorder Grey Literature Search Recorder
ID jakjjpgijmddonpghnhadbmjhokiljdg
Oficjalny URL https://chromewebstore.google.com/detail/grey-literature-search-re/jakjjpgijmddonpghnhadbmjhokiljdg
Opis Normalizes search results and transparency of grey literature searches.
Rozmiar pliku 23.3 KB
Liczba instalacji 178
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2020-04-27
Data Publikacji 2020-04-24
Deweloper Christopher Penkin
Typ Płatności free
Strona Rozszerzenia https://www.eshackathon.org/software/grey-lit-reporter.html
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grey Literature Search Recorder",
    "description": "Normalizes search results and transparency of grey literature searches.",
    "version": "0.1.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "img\/logo_16x16.png",
        "32": "img\/logo_32x32.png",
        "48": "img\/logo_48x48.png",
        "128": "img\/logo_128x128.png"
    },
    "browser_action": {
        "default_name": "Start Recording Session",
        "default_icon": "img\/logo_16x16.png"
    },
    "web_accessible_resources": [
        "css\/app.css",
        "css\/buttons.css",
        "img\/export.jpg",
        "img\/icon_close.svg",
        "js\/app.js",
        "js\/fileSaver.js",
        "views\/app.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/; object-src 'self'"
}