PubMedley
Perform PubMed advanced search in natural language and export results with a click!
PubMedley là gì?
PubMedley là một tiện ích mở rộng Chrome được phát triển bởi https://quantleaf.com, và tính năng chính của nó là "Perform PubMed advanced search in natural language and export results with a click!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PubMedley
Tải xuống các tệp mở rộng PubMedley dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PubMedley |
ID | mhjaacjkkbkmdpgdmkbmfcmieinajhlo |
URL Chính Thức | https://chromewebstore.google.com/detail/pubmedley/mhjaacjkkbkmdpgdmkbmfcmieinajhlo |
Mô tả | Perform PubMed advanced search in natural language and export results with a click! |
Kích Thước Tệp | 49.82 KB |
Số Lần Cài Đặt | 103 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2021-02-22 |
Ngày Phát Hành | 2021-02-12 |
Nhà Phát Triển | https://quantleaf.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/quantleaf/pubmedley |
URL Trang Trợ Giúp | https://github.com/quantleaf/pubmedley/issues |
URL Trang Chính Sách Bảo Mật | https://quantleaf.com/legal/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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 } |