CiteDrive 'BibTeX' Companion

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

CiteDrive 'BibTeX' Companion란 무엇입니까?

CiteDrive 'BibTeX' Companion은(는) https://citedrive.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saving articles from the web browser to Overleaf with a single click"입니다.

확장 프로그램 스크린샷

screenshot

CiteDrive 'BibTeX' Companion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}