Grammarly with Ghost

Allow Grammarly to work on Ghost's editor

O que é Grammarly with Ghost?

Grammarly with Ghost é uma extensão do Chrome desenvolvida por Shahed Nasser, e sua principal característica é "Allow Grammarly to work on Ghost's editor".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Grammarly with Ghost

Baixe arquivos de extensão Grammarly with Ghost no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Grammarly with Ghost Grammarly with Ghost
ID iakfoofepmfjafjepidembmheemidbdb
URL Oficial https://chromewebstore.google.com/detail/grammarly-with-ghost/iakfoofepmfjafjepidembmheemidbdb
Descrição Allow Grammarly to work on Ghost's editor
Tamanho do Arquivo 28.61 KB
Contagem de Instalações 2,007
Versão Atual 1.0.2
Última Atualização 2023-08-30
Data de Publicação 2021-02-22
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Shahed Nasser
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/shahednasser/grammarly-ghost
URL da Página de Ajuda https://github.com/shahednasser/grammarly-ghost/issues
Idiomas Suportados 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"
    }
}