Overleaf textarea
This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.
Qu'est-ce que Overleaf textarea ?
Overleaf textarea est une extension Chrome développée par Robin Dijkhof, et sa fonction principale est "This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Overleaf textarea
Téléchargez les fichiers d'extension Overleaf textarea au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Overleaf textarea |
ID | iejmieihafhhmjpoblelhbpdgchbckil |
URL Officiel | https://chromewebstore.google.com/detail/overleaf-textarea/iejmieihafhhmjpoblelhbpdgchbckil |
Description | This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly. |
Taille du Fichier | 75.91 KB |
Nombre d'Installations | 30,130 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2023-05-12 |
Date de Publication | 2020-10-12 |
Évaluation | 4.83/5 Total 111 Évaluations |
Développeur | Robin Dijkhof |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/robindijkhof/overleaf-textarea |
URL de la Page d'Aide | https://github.com/robindijkhof/overleaf-textarea |
Langues Prises en Charge | 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" } ] } |