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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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
이메일 [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
    }
}