Overleaf textarea

This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.

Cos'è Overleaf textarea?

Overleaf textarea è un'estensione di Chrome sviluppata da Robin Dijkhof, e la sua funzione principale è "This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Overleaf textarea

Scarica i file di estensione Overleaf textarea in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Spellcheck in Overleaf is very basic. It is nothing compared to dedicated tools such as Grammarly. I used to copy and paste into Docs back and forward until recently. I created this chrome extension that copies the content of the file visible in the editor; filters the commands/keywords and pastes the plain text in a textarea (Right area). This textarea is displayed over the pdf preview. Extensions such as Grammarly can't check complex editors such as Overleaf, but only work in textareas. Changes made to the textarea, either by extensions such as Grammarly or yourself, are evaluated and changes are merged back to the editor.                    

Informazioni di Base sull'Estensione

Nome Overleaf textarea Overleaf textarea
ID iejmieihafhhmjpoblelhbpdgchbckil
URL Ufficiale https://chromewebstore.google.com/detail/overleaf-textarea/iejmieihafhhmjpoblelhbpdgchbckil
Descrizione This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.
Dimensione del File 75.91 KB
Conteggio Installazioni 30,130
Versione Corrente 3.0.0
Ultimo Aggiornamento 2023-05-12
Data di Pubblicazione 2020-10-12
Valutazione 4.83/5 Totale 111 Valutazioni
Sviluppatore Robin Dijkhof
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/robindijkhof/overleaf-textarea
URL della Pagina di Aiuto https://github.com/robindijkhof/overleaf-textarea
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Overleaf textarea",
    "version": "3.0.0",
    "description": "This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "32": "assets\/icons\/icon_32.png",
        "48": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "homepage_url": "https:\/\/github.com\/abhijithvijayan\/web-extension-starter",
    "permissions": [
        "https:\/\/overleaf.com\/",
        "https:\/\/www.overleaf.com\/",
        "*:\/\/*.overleaf.com\/*",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "js\/page-script.bundle.js"
    ],
    "author": "Robin Dijkhof",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/icon_16.png",
            "32": "assets\/icons\/icon_32.png",
            "48": "assets\/icons\/icon_48.png",
            "128": "assets\/icons\/icon_128.png"
        }
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.overleaf.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "run_at": "document_end"
        }
    ]
}