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!”。
擴展截圖
下載PubMedley擴展crx文件
下載PubMedley擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | mhjaacjkkbkmdpgdmkbmfcmieinajhlo |
官方網址 | 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 } |