Write Better

English grammar suggestions for better writing

什麼是Write Better?

Write Better是由Essential Kit開發的Chrome擴展程式,該擴展的主要功能是“English grammar suggestions for better writing”。

擴展截圖

screenshot
screenshot

下載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 Write Better
ID nnnnnpmcdcloafmfkiihafnjidjkfmek
官方網址 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
電子郵箱 [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
    }
}