PubMedley

Perform PubMed advanced search in natural language and export results with a click!

PubMedley란 무엇입니까?

PubMedley은(는) https://quantleaf.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Perform PubMed advanced search in natural language and export results with a click!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Enhance your search experience on PubMed with natural language searches. This tool converts what you write into advanced search syntax when applicable. It also gives you suggestions on all the search properties that you can use. 

*Why download permission?*
This tool also adds an export button to let you export all the results into an CSV containing the title, authors, links and abstracts. This is why the download permission is needed.

Source code: https://github.com/quantleaf/pubmedley
Same thing but for 
- Google Advanced search: https://chrome.google.com/webstore/detail/natural-advanced-search-f/mggcfjiinfepcbnnpgdahepmegpkjihj
- Twitter Advanced search: https://chrome.google.com/webstore/detail/twitter-natural-advanced                    

확장 프로그램 기본 정보

이름 PubMedley PubMedley
ID mhjaacjkkbkmdpgdmkbmfcmieinajhlo
공식 URL https://chromewebstore.google.com/detail/pubmedley/mhjaacjkkbkmdpgdmkbmfcmieinajhlo
설명 Perform PubMed advanced search in natural language and export results with a click!
파일 크기 49.82 KB
설치 횟수 103
현재 버전 0.0.2
최근 업데이트 2021-02-22
출시 날짜 2021-02-12
개발자 https://quantleaf.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/quantleaf/pubmedley
도움말 페이지 URL https://github.com/quantleaf/pubmedley/issues
개인정보 보호 정책 페이지 URL https://quantleaf.com/legal/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Perform PubMed advanced search in natural language and export results with a click!",
    "version": "0.0.2",
    "name": "PubMedley",
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pubmed.ncbi.nlm.nih.gov\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-16x16.png",
            "32": "images\/logo-32x32.png",
            "48": "images\/logo-48x48.png",
            "128": "images\/logo-128x128.png"
        }
    },
    "icons": {
        "16": "images\/logo-16x16.png",
        "32": "images\/logo-32x32.png",
        "48": "images\/logo-48x48.png",
        "128": "images\/logo-128x128.png"
    },
    "manifest_version": 2
}