Grammarly with Ghost

Allow Grammarly to work on Ghost's editor

Grammarly with Ghost란 무엇입니까?

Grammarly with Ghost은(는) Shahed Nasser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow Grammarly to work on Ghost's editor"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Grammarly with Ghost 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If you use Ghost for your blogging needs and you need Grammarly as well to make your life easier, you probably noticed that Grammarly does not work with Ghost's editor Koenig. 

While researching this online, I found a convenient solution for this issue and a lot of people have been using it. I have used it myself and it works well. So, I decided to put it in an extension to help others as well.

It should be noted that the reason behind Grammarly not working with Ghost's editor is due to it not supporting it. So, I am not sure if this solution will cause any problems on your side. For me, it works perfectly well.

Note: This extension assumes you already have the Grammarly extension installed in your browser

If you find any issues or bugs, please submit it to the GitHub repository.

Extension icon is from Dinosoft Lab on Iconscout at https://iconscout.com/contributors/dinosoftlabs                    

확장 프로그램 기본 정보

이름 Grammarly with Ghost Grammarly with Ghost
ID iakfoofepmfjafjepidembmheemidbdb
공식 URL https://chromewebstore.google.com/detail/grammarly-with-ghost/iakfoofepmfjafjepidembmheemidbdb
설명 Allow Grammarly to work on Ghost's editor
파일 크기 28.61 KB
설치 횟수 2,007
현재 버전 1.0.2
최근 업데이트 2023-08-30
출시 날짜 2021-02-22
평점 5.00/5 총 4 개의 평점
개발자 Shahed Nasser
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/shahednasser/grammarly-ghost
도움말 페이지 URL https://github.com/shahednasser/grammarly-ghost/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grammarly with Ghost",
    "version": "1.0.2",
    "description": "Allow Grammarly to work on Ghost's editor",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/images\/icon16.png",
            "24": "assets\/images\/icon24.png",
            "32": "assets\/images\/icon32.png"
        },
        "default_title": "Grammarly With Ghost",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "assets\/js\/contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "\/assets\/images\/icon16.png",
        "32": "\/assets\/images\/icon32.png",
        "48": "\/assets\/images\/icon48.png",
        "128": "\/assets\/images\/icon128.png"
    }
}