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”。
扩展截图
下载CiteDrive 'BibTeX' Companion扩展crx文件
下载CiteDrive 'BibTeX' Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } ] } |