Rafflesia for Overleaf

Handy tools for Overleaf

什么是Rafflesia for Overleaf?

Rafflesia for Overleaf是由felker.tech开发的Chrome扩展程序,该扩展的主要功能是“Handy tools for Overleaf”。

扩展截图

screenshot

下载Rafflesia for Overleaf扩展crx文件

下载Rafflesia for Overleaf扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This adds a bottom panel to Overleaf documents which provides an ever-growing list of tools in order to maximize your productivity while writing papers.

When this is installed, a small toolbar will appear at the bottom of an Overleaf document. When you open the toolbar, you'll find several tools that can run locally and interact with your document.

Some tools include:
- Citations: You are able to add a link and automatically generate the appropriate BibTeX content and insert it into your document
- Comments: You can quickly find TODOs and FIXMEs scattered throughout the document
- Math Catalog: Helpful reference material for using various math formulas and processes in your document
- Timer: Set and manage timers to help you focus in brief sprints
- Word Cloud: See a count of characters, words, paragraphs and most frequent words

Tools can be updated or added over the course of the product lifecycle. I welcome ideas and feedback on what you want to see next to boost your productivity.                    

扩展基本信息

名称 Rafflesia for Overleaf Rafflesia for Overleaf
ID fdcjfccjfkjbhpmaiomkbclokacahenl
官方URL https://chromewebstore.google.com/detail/rafflesia-for-overleaf/fdcjfccjfkjbhpmaiomkbclokacahenl
简介 Handy tools for Overleaf
文件大小 161 KB
安装次数 61
当前版本 1.0.1
更新时间 2022-07-10
上架时间 2022-06-27
开发者 felker.tech
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Fleker/rafflesia
帮助页面URL https://github.com/Fleker/rafflesia/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rafflesia for Overleaf",
    "description": "Handy tools for Overleaf",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.overleaf.com\/project\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "webpage-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}