Write Better
English grammar suggestions for better writing
Write Better là gì?
Write Better là một tiện ích mở rộng Chrome được phát triển bởi Essential Kit, và tính năng chính của nó là "English grammar suggestions for better writing".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Write Better
Tải xuống các tệp mở rộng Write Better dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A naive English language grammar checker for Google docs. Works Offline: All text analysis happen on the browser on-demand. The content of Google docs are never uploaded to a remote server or stored locally. Free alternative to grammarly, language tool, ginger etc View the source code at https://github.com/justiceo/write-better Got feedback? https://forms.gle/LXBcvMG9Vt4fFUen8 or leave a comment on the extensions page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Write Better |
ID | nnnnnpmcdcloafmfkiihafnjidjkfmek |
URL Chính Thức | https://chromewebstore.google.com/detail/write-better/nnnnnpmcdcloafmfkiihafnjidjkfmek |
Mô tả | English grammar suggestions for better writing |
Kích Thước Tệp | 372 KB |
Số Lần Cài Đặt | 5,067 |
Phiên Bản Hiện Tại | 0.1.2 |
Cập Nhật Lần Cuối | 2022-03-24 |
Ngày Phát Hành | 2019-05-12 |
Đánh Giá | 4.50/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Essential Kit |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/justiceo/write-better |
URL Trang Trợ Giúp | https://github.com/justiceo/write-better/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Write Better", "version": "0.1.2", "description": "English grammar suggestions for better writing", "manifest_version": 2, "author": "Justice Ogbonna", "homepage_url": "https:\/\/github.com\/justiceo\/write-better", "permissions": [ "https:\/\/docs.google.com\/*", "storage" ], "page_action": { "default_icon": { "16": "images\/quill-orange16.png", "24": "images\/quill-orange24.png", "32": "images\/quill-orange32.png" }, "default_title": "Write Better", "default_popup": "" }, "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/docs.google.com\/*" ], "include_globs": [ "https:\/\/docs.google.com\/document\/d\/*" ], "js": [ "content-script.js" ], "css": [ "highlight.css" ] } ], "icons": { "16": "images\/quill-orange16.png", "32": "images\/quill-orange32.png", "48": "images\/quill-orange48.png", "128": "images\/quill-orange128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |