PubMedley

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

PubMedley क्या है?

PubMedley https://quantleaf.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Perform PubMed advanced search in natural language and export results with a click!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PubMedley एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}