CiteDrive 'BibTeX' Companion

Saving articles from the web browser to Overleaf with a single click

CiteDrive 'BibTeX' Companion क्या है?

CiteDrive 'BibTeX' Companion https://citedrive.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Saving articles from the web browser to Overleaf with a single click"।

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

screenshot

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

crx प्रारूप में CiteDrive 'BibTeX' Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Effortlessly collect, organize, and generate in-text citations for your BibTeX and BibLaTeX bibliographies. Whether you're working in Overleaf or RStudio (Posit), seamlessly integrate references into your LaTeX, Quarto, or R Markdown documents without ever leaving your project!

CiteDrive is built from the ground up to stay out of your way and help you focus on writing.

ONE-CLICK REFERENCE COLLECTION

Collecting references for your paper has never been easier. With the CiteDrive Companion browser add-on, discover articles, books, or websites through your regular sources– Google Scholar, Pubmed, and many others– and simply click the CiteDrive icon on your toolbar to add the reference directly to your CiteDrive project.

CUSTOMIZABLE BIBTEX CODE

Unlike many other reference managers, CiteDrive is Bib[La]TeX native and gives you complete control to customize your BibTeX reference snippets as you collect them. Better yet, your customizations carry through as you connect your CiteDrive and Overleaf (or other LaTeX editors) projects or RStudio (Quarto and R Markdown) so you can take full advantage of custom field extensions.

SEAMLESS IN-TEXT CITATIONS

Inserting in-text citations to your Overleaf paper from your CiteDrive project is a snap with the browser add-on. Simply look for the new “Insert Citation” button at the top of the Overleaf screen, select the reference of interest, and the appropriate in-text citation will be generated and inserted for you.                    

एक्सटेंशन की मूल जानकारी

नाम CiteDrive 'BibTeX' Companion CiteDrive 'BibTeX' Companion
ID gmmonfphegngpcbcapfbgembkjeookik
आधिकारिक URL https://chromewebstore.google.com/detail/citedrive-bibtex-companio/gmmonfphegngpcbcapfbgembkjeookik
विवरण Saving articles from the web browser to Overleaf with a single click
फ़ाइल का आकार 16.17 KB
स्थापना संख्या 2,378
वर्तमान संस्करण 4.1.0
अंतिम अपडेट 2024-02-12
प्रकाशन तिथि 2021-12-28
रेटिंग 3.80/5 कुल 5 रेटिंग्स
डेवलपर https://citedrive.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://citedrive.com/
सहायता पृष्ठ URL https://github.com/orgs/citedrive/discussions
गोपनीयता नीति पृष्ठ URL https://www.citedrive.com/en/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CiteDrive 'BibTeX' Companion",
    "version": "4.1.0",
    "description": "Saving articles from the web browser to Overleaf with a single click",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "services\/util.js",
                "services\/saveDOI.js",
                "services\/savePreprint.js",
                "services\/saveOnline.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.overleaf.com\/project\/*"
            ],
            "js": [
                "services\/overleaf.js"
            ],
            "world": "MAIN"
        }
    ]
}