the FAIR extension

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

the FAIR extension란 무엇입니까?

the FAIR extension은(는) Pedro Hernandez Serrano에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

the FAIR extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/                    

확장 프로그램 기본 정보

이름 the FAIR extension the FAIR extension
ID pjmiddoifhbhbfcppdbmaigdeoiochdg
공식 URL https://chromewebstore.google.com/detail/the-fair-extension/pjmiddoifhbhbfcppdbmaigdeoiochdg
설명 An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source.
파일 크기 241 KB
설치 횟수 27
현재 버전 1.1.0
최근 업데이트 2023-08-04
출시 날짜 2022-10-25
평점 4.50/5 총 2 개의 평점
개발자 Pedro Hernandez Serrano
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://maastrichtu-library.github.io/the-FAIR-extension/
도움말 페이지 URL https://github.com/MaastrichtU-Library/the-FAIR-extension/issues
지원되는 언어 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
}