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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |