the FAIR extension

An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.

Co to jest the FAIR extension?

the FAIR extension to rozszerzenie Chrome opracowane przez Pedro Hernandez Serrano, a jego główną funkcją jest „An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia the FAIR extension

Pobierz pliki rozszerzeń the FAIR extension 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

                        HEADS-UP: 
When the extension is active it can mess with some websites (e.g. YouTube).
This is a known bug and we'll solve it soon.
To avoid this please select "On click" access.

chrome://extensions/ > Details > Site access > On click

QUICK START HERE:
https://maastrichtu-library.github.io/the-FAIR-extension/

ABOUT: 
The scientific community's efforts have increased regarding the application and assessment of the FAIR principles[1] on Digital Objects (DO) such as publications or datasets. Consequently, openly available automated FAIR assessment services have been working on standardization of FAIR metrics. Moreover, Digital Competence Centers and Universitiy Libraries have been central in moving towards digitization of services. However, in practice, using the FAIR assessment tools is still an intricate process for the average researcher. It requires a steep learning curve since, disengaging some researchers in the process.

We aim to use technology to close this gap. "The FAIR extension", is an open-source, web browser extension that allows users to make FAIR assessment directly at the web source. Web browser extensions have been an accessible digital tool for libraries supporting scholarship[2]. For example the reference managers deployed as a browser service[3].

The FAIR extension connects to a FAIR assessment API [4], i.e. we are not creating yet another FAIR assessment framework from scratch. The pop-up displays the FAIR metrics on the client side getting scores of articles, datasets and other DOs in real-time on a web source, such as a scholarly platform or DO repository. 

- References
1. Wilkinson, M., Dumontier, M., Aalbersberg, I. et al. The FAIR Guiding Principles for scientific data management and stewardship. Sci Data 3, 160018 (2016). https://doi.org/10.1038/sdata.2016.18
2. De Sarkar T (2015) The prevalence of web browser extensions use in library services: an exploratory study. The Electronic Library 33 (3): 334‑354. https://doi.org/10.1108/el-04-2013-0063
3. Ferguson C (2019) Leaning into Browser Extensions. Serials Review 45: 48‑53. https://doi.org/10.1080/00987913.2019.1624909
4. FAIR enough API: https://fair-enough.semanticscience.org/                    

Podstawowe informacje o rozszerzeniu

Nazwa the FAIR extension the FAIR extension
ID pjmiddoifhbhbfcppdbmaigdeoiochdg
Oficjalny URL https://chromewebstore.google.com/detail/the-fair-extension/pjmiddoifhbhbfcppdbmaigdeoiochdg
Opis An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.
Rozmiar pliku 241 KB
Liczba instalacji 27
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-08-04
Data Publikacji 2022-10-25
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper Pedro Hernandez Serrano
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://maastrichtu-library.github.io/the-FAIR-extension/
Adres URL Strony Pomocy https://github.com/MaastrichtU-Library/the-FAIR-extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "the FAIR extension",
    "version": "1.1.0",
    "description": "An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 3
}