Grammarly to Markdown

Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…

O que é Grammarly to Markdown?

Grammarly to Markdown é uma extensão do Chrome desenvolvida por brunoluiz, e sua principal característica é "Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Grammarly to Markdown

Baixe arquivos de extensão Grammarly to Markdown 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

                        Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly, does the job quite well on it. It doesn't export to Markdown though -- developers favourite format. This tool converts Grammarly texts to Markdown, copying it to the clipboard after been converted. 

1. Open any document in Grammarly -- URL might be `https://app.grammarly.com/ddocs/*`
2. Click on the extension button on the toolbar
3. It should be copied to your clipboard
4. Profit 🚀

Feel free to open issues and pull requests: https://github.com/brunoluiz/grammarly-markdown-extension                    

Informações Básicas da Extensão

Nome Grammarly to Markdown Grammarly to Markdown
ID bjodbpcjeogaihbekannledankhcjbgo
URL Oficial https://chromewebstore.google.com/detail/grammarly-to-markdown/bjodbpcjeogaihbekannledankhcjbgo
Descrição Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…
Tamanho do Arquivo 439 KB
Contagem de Instalações 14,859
Versão Atual 2.1.1
Última Atualização 2022-10-31
Data de Publicação 2020-05-08
Classificação 3.71/5 Total de 14 Avaliações
Desenvolvedor brunoluiz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://brunoluiz.net/grammarly-markdown-extension
URL da Página de Ajuda https://github.com/brunoluiz/grammarly-markdown-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.1.1",
    "name": "Grammarly to Markdown",
    "author": "Bruno Luiz Silva ",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.grammarly.com\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/js\/content.js"
            ]
        }
    ],
    "options_page": "src\/options.html",
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "48": "src\/img\/icon-48.png",
            "128": "src\/img\/icon-128.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*.grammarly.com\/*"
    ],
    "icons": {
        "48": "src\/img\/icon-48.png",
        "128": "src\/img\/icon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'",
        "sandbox": "sandbox allow-scripts; default-src 'self'"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{01e4670b-532b-42ed-88c2-c7b46d05133a}"
        }
    },
    "applications": {
        "gecko": {
            "id": "{01e4670b-532b-42ed-88c2-c7b46d05133a}"
        }
    }
}