Unearth

This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)

Unearth란 무엇입니까?

Unearth은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Unearth 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension fetches conflict-of-interest and industry funding information from biomedical journal articles and places them at the top of abstracts within PubMed.

Currently works for open-access articles from PubMed Central, which covers “several million articles from several thousands of journals.”  (We will be adding additional coverage and fixing bugs in coming weeks. Volunteers welcome!)  If there are no funding or conflicts disclosures accessible for the abstract within PMC, the extension does not modify the PubMed page, so you might not notice any change. 

Try it:  After installing the Extension, go to http://www.ncbi.nlm.nih.gov/pubmed/25274181 (copy this URL now)

This was a product of the Hacking iCorruption event at MIT Media Lab, April 2015, sponsored by the Edmond J. Safra Center for Ethics Institutional Corruption Lab.  Support was also provided by James E. Rogers College of Law, University of Arizona.  This project won first place in the Hackathon competition.

Contact the Unearth Team:  [email protected] (Christopher Robertson)

Developers:
Alex Chen
Steven Cooke
Alisa Nguyen
Avery Dao
Marco Gentili
Diana Nguyen

Designer:
Alexandra Horeanopoulos

Special Thanks:
Shane Runquist
Ned Sahin
Jon Loe
Alex Winkelman

This project is in Beta-testing.  The extension is provided 'as-is' without warranties.  

The source code is available at:  https://github.com/alisan16/icorruption-ext                    

확장 프로그램 기본 정보

이름 Unearth Unearth
ID nlgekenmjhflbaohkglefehfbfdinbmi
공식 URL https://chromewebstore.google.com/detail/unearth/nlgekenmjhflbaohkglefehfbfdinbmi
설명 This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)
파일 크기 36.74 KB
설치 횟수 206
현재 버전 0.0.4
최근 업데이트 2015-04-03
출시 날짜 2015-04-03
평점 4.30/5 총 10 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unearth",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)",
    "icons": {
        "48": "images\/icon-48.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.ncbi.nlm.nih.gov\/*",
                "http:\/\/www.pubmedcentral.nih.gov\/*",
                "http:\/\/www.accessdata.fda.gov\/*"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/injector.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "scripts\/jquery.min.map"
    ]
}