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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pedro Hernandez Serrano และคุณลักษณะหลักของมันคือ "An open-source web browser extension that allows researchers to do FAIRness evaluations directly to the web source."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย the FAIR extension

ดาวน์โหลดไฟล์ส่วนขยาย the FAIR extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}