Rafflesia for Overleaf

Handy tools for Overleaf

O que é Rafflesia for Overleaf?

Rafflesia for Overleaf é uma extensão do Chrome desenvolvida por felker.tech, e sua principal característica é "Handy tools for Overleaf".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Rafflesia for Overleaf

Baixe arquivos de extensão Rafflesia for Overleaf no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Rafflesia for Overleaf Rafflesia for Overleaf
ID fdcjfccjfkjbhpmaiomkbclokacahenl
URL Oficial https://chromewebstore.google.com/detail/rafflesia-for-overleaf/fdcjfccjfkjbhpmaiomkbclokacahenl
Descrição Handy tools for Overleaf
Tamanho do Arquivo 161 KB
Contagem de Instalações 61
Versão Atual 1.0.1
Última Atualização 2022-07-10
Data de Publicação 2022-06-27
Desenvolvedor felker.tech
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Fleker/rafflesia
URL da Página de Ajuda https://github.com/Fleker/rafflesia/issues
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}