Overleaf textarea
This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly.
Overleaf textarea क्या है?
Overleaf textarea Robin Dijkhof द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin displays your text in a textarea so you can use spellcheck plugins like Grammarly."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Overleaf textarea एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |