Write Better
English grammar suggestions for better writing
Write Betterとは何ですか?
Write BetterはEssential Kitによって開発されたChromeの拡張機能で、その主な機能は「English grammar suggestions for better writing」です。
拡張機能のスクリーンショット
Write Better拡張機能のCRXファイルをダウンロード
Write Better拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Write Better |
ID | nnnnnpmcdcloafmfkiihafnjidjkfmek |
公式URL | https://chromewebstore.google.com/detail/write-better/nnnnnpmcdcloafmfkiihafnjidjkfmek |
説明 | English grammar suggestions for better writing |
ファイルサイズ | 372 KB |
インストール数 | 5,067 |
現在のバージョン | 0.1.2 |
最終更新日 | 2022-03-24 |
公開日 | 2019-05-12 |
評価 | 4.50/5 合計 6 レビュー |
開発者 | Essential Kit |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/justiceo/write-better |
ヘルプページのURL | https://github.com/justiceo/write-better/issues |
対応言語 | 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 } } |