Overleaf textarea
This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.
什么是Overleaf textarea?
Overleaf textarea是由Robin Dijkhof开发的Chrome扩展程序,该扩展的主要功能是“This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.”。
扩展截图
下载Overleaf textarea扩展crx文件
下载Overleaf textarea扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Overleaf textarea |
ID | iejmieihafhhmjpoblelhbpdgchbckil |
官方URL | https://chromewebstore.google.com/detail/overleaf-textarea/iejmieihafhhmjpoblelhbpdgchbckil |
简介 | This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly. |
文件大小 | 75.91 KB |
安装次数 | 30,130 |
当前版本 | 3.0.0 |
更新时间 | 2023-05-12 |
上架时间 | 2020-10-12 |
评分 | 4.83/5 共111次评分 |
开发者 | Robin Dijkhof |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/robindijkhof/overleaf-textarea |
帮助页面URL | https://github.com/robindijkhof/overleaf-textarea |
支持的语言 | 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" } ] } |