PubMedley
Perform PubMed advanced search in natural language and export results with a click!
Cos'è PubMedley?
PubMedley è un'estensione di Chrome sviluppata da https://quantleaf.com, e la sua funzione principale è "Perform PubMed advanced search in natural language and export results with a click!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PubMedley
Scarica i file di estensione PubMedley in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | PubMedley |
ID | mhjaacjkkbkmdpgdmkbmfcmieinajhlo |
URL Ufficiale | https://chromewebstore.google.com/detail/pubmedley/mhjaacjkkbkmdpgdmkbmfcmieinajhlo |
Descrizione | Perform PubMed advanced search in natural language and export results with a click! |
Dimensione del File | 49.82 KB |
Conteggio Installazioni | 103 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2021-02-22 |
Data di Pubblicazione | 2021-02-12 |
Sviluppatore | https://quantleaf.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/quantleaf/pubmedley |
URL della Pagina di Aiuto | https://github.com/quantleaf/pubmedley/issues |
URL della Pagina della Politica sulla Privacy | https://quantleaf.com/legal/privacy |
Lingue Supportate | 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 } |