the FAIR extension

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

Qu'est-ce que the FAIR extension ?

the FAIR extension est une extension Chrome développée par Pedro Hernandez Serrano, et sa fonction principale est "An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension the FAIR extension

Téléchargez les fichiers d'extension the FAIR extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom the FAIR extension the FAIR extension
ID pjmiddoifhbhbfcppdbmaigdeoiochdg
URL Officiel https://chromewebstore.google.com/detail/the-fair-extension/pjmiddoifhbhbfcppdbmaigdeoiochdg
Description An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.
Taille du Fichier 241 KB
Nombre d'Installations 27
Version Actuelle 1.1.0
Dernière Mise à Jour 2023-08-04
Date de Publication 2022-10-25
Évaluation 4.50/5 Total 2 Évaluations
Développeur Pedro Hernandez Serrano
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://maastrichtu-library.github.io/the-FAIR-extension/
URL de la Page d'Aide https://github.com/MaastrichtU-Library/the-FAIR-extension/issues
Langues Prises en Charge 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
}